Changeset 30972 for trunk/admin/include


Ignore:
Timestamp:
Feb 16, 2015, 1:56:36 PM (10 years ago)
Author:
plg
Message:

bug 3203 fixed: for IE, explicit the url even for staying on the same page

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/include/add_core_tabs.inc.php

    r28714 r30972  
    6060
    6161    case 'comments':
    62       $sheets[''] = array('caption' => l10n('User comments'), 'url' => '');
     62      global $my_base_url;
     63      $sheets[''] = array('caption' => l10n('User comments'), 'url' => $my_base_url.'comments');
    6364      break;
    6465
    6566    case 'users':
    66       $sheets[''] = array('caption' => '<span class="icon-users"> </span>'.l10n('User list'), 'url' => '');
     67      global $my_base_url;
     68      $sheets[''] = array('caption' => '<span class="icon-users"> </span>'.l10n('User list'), 'url' => $my_base_url.'user_list');
    6769      break;
    6870
    6971    case 'groups':
    70       $sheets[''] = array('caption' => '<span class="icon-group"> </span>'.l10n('Groups'), 'url' => '');
     72      global $my_base_url;
     73      $sheets[''] = array('caption' => '<span class="icon-group"> </span>'.l10n('Groups'), 'url' => $my_base_url.'group_list');
    7174      break;
    7275
Note: See TracChangeset for help on using the changeset viewer.