On user pages, the titles are getting replaced by two numbers separated by a forward slash. I've attached a screen shot of a user page. This appears if the user goes to their /user page, but displays the correct title if the user goes to /user/uid.

user page

The problem also appears after an account has been created and the login form is displayed:

login form

CommentFileSizeAuthor
login-form.png38.23 KBAnonymous (not verified)
user-page.png24.52 KBAnonymous (not verified)

Comments

worldwidemv’s picture

This is happens when the admin_menu (http://drupal.org/project/admin_menu) is installed.

The module node_breadcrums has the same problem #353519: Admin Menu Module Conflict - User Login Page

The fix there works also here.

FIX:
change line 79 from:

 $menu_link = menu_link_load(db_result(db_query("SELECT mlid FROM {menu_links} WHERE link_path = '%s'", $menu_item['href'])));

to

 $menu_link = menu_link_load(db_result(db_query("SELECT mlid FROM {menu_links} WHERE menu_name != 'admin_menu' AND link_path = '%s'", $menu_item['href'])));

that will do it.

Sincerely Markus

jweowu’s picture

xurizaemon’s picture

Status: Active » Closed (duplicate)