I get this error entering the frontend:
"A PHP Error was encountered
Severity: Notice
Message: Undefined variable: reduce_space
Filename: libraries/Menu.php
Line Number: 151"
The error started appearing after removing some items of the menu that i dont need.
This error appears when you dont have active links in a menu.
PHP error at home page (front end)
Re: PHP error at home page (front end)
You can add $reduce_space = false; somewhere at the beginning of the function to fix that issue.
app/frontend/libraries/Menu.php
Code: Select all
if(!is_array($this->menu) || empty($this->menu)) return FALSE;
//add this line.
$reduce_space = false;
Re: PHP error at home page (front end)
try new version and let me know if it solved your issue. If not can you send me the url, so i can have a look at the issue.