Changeset 358

Show
Ignore:
Timestamp:
09/14/07 16:31:44 (1 year ago)
Author:
bermiferrer
Message:

Fixing pass by reference bug on Request and absolute path on index.php which was introduced by mistake and found by the CI system

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/AkRequest.php

    r357 r358  
    728728        $this->_mapRoutes($Map); 
    729729         
    730         $params =& $this->getParams(); 
     730        $params = $this->getParams(); 
    731731        $controller_file_name = AkInflector::underscore($params['controller']).'_controller.php'; 
    732732        $controller_class_name = AkInflector::camelize($params['controller']).'Controller'; 
  • trunk/public/index.php

    r357 r358  
    1515 */ 
    1616 
    17 defined('AK_FRAMEWORK_DIR') ? null : define('AK_FRAMEWORK_DIR', '/Volumes/Files/Projects/akelos_framework/trunk'); 
     17// defined('AK_FRAMEWORK_DIR') ? null : define('AK_FRAMEWORK_DIR', '/path/to/the/framework'); 
    1818 
    1919/**