Page render issue: feature 1.4 branch
Hi,
I'm getting the following error trying to render a page:
A PHP Error was encountered
Severity: Notice
Message: Undefined property: Search::$fuel_navigation
Filename: libraries/Fuel_advanced_module.php
Line Number: 1161
MY_fuel.php
$config['fuel_mode'] = 'AUTO';
controller: search.php
function index(){
$vars['layout'] = 'search';
$this->fuel->pages->render('search', $vars);
}
the layout search.php is empty
the view search.php is also empty (I commented out the code while debugging)
I've traced the error to fuel/codeigniter/core/CodeIgniter.php Line 514
call_user_func_array(array(&$CI, $method), $params);
$method = 'index'
$params = array()
not sure what the issue is
Comments
A PHP Error was encountered
Severity: Notice
Message: Undefined property: Search::$fuel_modules
Filename: libraries/Fuel_advanced_module.php
Line Number: 1161
Backtrace:
File: /Users/david/Sites/Decidebloom/ofna/fuel/modules/fuel/libraries/Fuel_advanced_module.php
Line: 1161
Function: _error_handler
File: /Users/david/Sites/Decidebloom/ofna/fuel/modules/fuel/libraries/Fuel_advanced_module.php
Line: 393
Function: load_library
File: /Users/david/Sites/Decidebloom/ofna/fuel/modules/fuel/libraries/Fuel.php
Line: 331
Function: attach
File: /Users/david/Sites/Decidebloom/ofna/fuel/modules/fuel/libraries/Fuel_posts.php
Line: 962
Function: __get
File: /Users/david/Sites/Decidebloom/ofna/fuel/modules/fuel/libraries/Fuel_pages.php
Line: 730
Function: find_module
File: /Users/david/Sites/Decidebloom/ofna/fuel/modules/fuel/libraries/Fuel_pages.php
Line: 574
Function: assign_variables
File: /Users/david/Sites/Decidebloom/ofna/fuel/modules/fuel/libraries/Fuel_pages.php
Line: 525
Function: initialize
File: /Users/david/Sites/Decidebloom/ofna/fuel/modules/fuel/libraries/Fuel_pages.php
Line: 65
Function: __construct
File: /Users/david/Sites/Decidebloom/ofna/fuel/modules/fuel/libraries/Fuel_pages.php
Line: 321
Function: create
File: /Users/david/Sites/Decidebloom/ofna/fuel/application/controllers/Search.php
Line: 29
Function: render
File: /Users/david/Sites/Decidebloom/ofna/index.php
Line: 362
Function: require_once
Fatal error: Call to a member function get() on a non-object in /Users/david/Sites/Decidebloom/ofna/fuel/modules/fuel/libraries/Fuel_posts.php on line 962
A PHP Error was encountered
Severity: Error
Message: Call to a member function get() on a non-object
Filename: libraries/Fuel_posts.php
Line Number: 962
Backtrace:
Cheers