notice: Undefined variable: menu in /var/www/sites/all/modules/local_menu/local_menu.module on line 85.

Not sure what this is or if I should be worried?

CommentFileSizeAuthor
#1 local_menu.txt592 bytesandypost

Comments

andypost’s picture

Status: Active » Needs review
StatusFileSize
new592 bytes

There's undefined variable $menu...
Suppose it should be

- $title = db_result(db_query("SELECT title FROM {menu_custom} WHERE menu_name = '%s'", $menu));
+ $title = db_result(db_query("SELECT title FROM {menu_custom} WHERE menu_name = '%s'", $link['menu_name']));
akalsey’s picture

Status: Needs review » Reviewed & tested by the community

Works for me

andypost’s picture

Where is maintainer?

dave reid’s picture

Status: Reviewed & tested by the community » Fixed

Fixed in CVS.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.