Closed (fixed)
Project:
Site User List
Version:
6.x-1.0-beta1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
29 Sep 2007 at 15:16 UTC
Updated:
21 Dec 2010 at 20:30 UTC
This option "Site user list page title:" does not seem to be overriding the standard page title of "Site user list". My Drupal version is 5.2. The module version is: site_user_list.module,v 1.1.2.6.2.27 2007/06/22 15:57:41
Comments
Comment #1
pukku commentedYou may need to clear your caches to force the menus to rebuild themselves. You may also be able to do this by going to the admin/modules page and clicking submit.
HTH,
Ricky
Comment #2
langweer commentedI have the same problem. Admin can not override standard page title. It always is "Site user list".
I can't figure out how to solve this. Even hardcoding in site_user_list.module doesn't work.
Site cache is not active.
Any suggestions? :-)
Comment #3
pooneil commentedI am a new co-maintainer of this application. Ricky's suggestion of going to the admin/modules page and clicking submit should work. Please let me know if this did/does not work for you (you may not even be running Drupal 5 anymore!).
Comment #4
pooneil commentedComment #5
Cyrandir commentedI am having the same problem, am using the 6.x-1.0-beta1 release. Going to the modules page and re-saving did not help. No site cache here either.
Comment #6
pukku commentedThere is a cache, even if page caching it turned off. If you go to admin/settings/performance, you can clear all cached data, which should force the menus to rebuild.
Ricky
Comment #7
Cyrandir commentedI tried that before looking there, and in fact just now did it again, but to no avail. The name is still not matching what I save in the configuration. What else can I provide you that would be helpful?
Comment #8
pukku commentedDo you have the devel module installed, or access to the database?
If you have the devel module installed, go to the variable editor, if only access to the database, look in the "variable" table. What is the value for the variable "site_user_list_title"? Does it match what you would like it to be?
Comment #9
pukku commentedComment #10
Cyrandir commentedChecked the db directly and found that it does match what I want, so that much is good :) Just have to figure out how to get it where it needs to go.
Comment #11
pukku commentedHi! Sorry for the delay...
Just to double-check, if you go into site_user_list.module, around line 111, do you see:
If so, in the database, in the table 'menu_links', what do you get as a result of "
SELECT * FROM menu_links WHERE link_path='site_user_list'"?Comment #12
pukku commented(Also, what about the appropriate query in the
menu_routertable?)Comment #13
phdenis63 commentedAnswer to #11 (I'm using version 6.x-1.0-beta1 with patch 183379_0.patch concerning eval)
"Site user list page title" entered in the "User Interface Options" is not showed as page-title for the result list.
1) the lines below are ok
$items['site_user_list'] = array(
'title' => variable_get('site_user_list_title', 'Site user list'),
'page callback' => 'drupal_get_form',
2) SELECT * FROM menu_links WHERE link_path='site_user_list'" give me:
If i change manualy (in the table) the field link_title with the title I want, everything is ok: it is showed as page-title
Comment #14
pooneil commentedI'm just noticing that some people are using the 6.x version with Drupal 5. This may be part of the issue as it seems to work fine in Drupal 6. Post #13 describes a manual fix for this if needed.