diff options
author | plegall <plg@piwigo.org> | 2015-02-16 12:56:36 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2015-02-16 12:56:36 +0000 |
commit | 2d01221893348d9afd633a46d8a99b7256bc4d89 (patch) | |
tree | a52dc209519936552b305e55bb9eced0d5f69743 /admin/include | |
parent | e21c62eb0482a0d1de08ed6291aa5cbf04d86868 (diff) |
bug 3203 fixed: for IE, explicit the url even for staying on the same page
git-svn-id: http://piwigo.org/svn/trunk@30972 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/include')
-rw-r--r-- | admin/include/add_core_tabs.inc.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/admin/include/add_core_tabs.inc.php b/admin/include/add_core_tabs.inc.php index 3b0c70118..28cf1ce9e 100644 --- a/admin/include/add_core_tabs.inc.php +++ b/admin/include/add_core_tabs.inc.php @@ -59,15 +59,18 @@ function add_core_tabs($sheets, $tab_id) break; case 'comments': - $sheets[''] = array('caption' => l10n('User comments'), 'url' => ''); + global $my_base_url; + $sheets[''] = array('caption' => l10n('User comments'), 'url' => $my_base_url.'comments'); break; case 'users': - $sheets[''] = array('caption' => '<span class="icon-users"> </span>'.l10n('User list'), 'url' => ''); + global $my_base_url; + $sheets[''] = array('caption' => '<span class="icon-users"> </span>'.l10n('User list'), 'url' => $my_base_url.'user_list'); break; case 'groups': - $sheets[''] = array('caption' => '<span class="icon-group"> </span>'.l10n('Groups'), 'url' => ''); + global $my_base_url; + $sheets[''] = array('caption' => '<span class="icon-group"> </span>'.l10n('Groups'), 'url' => $my_base_url.'group_list'); break; case 'configuration': |