diff options
author | mistic100 <mistic@piwigo.org> | 2012-07-23 11:52:18 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2012-07-23 11:52:18 +0000 |
commit | 18bf888d16ed366ac7a2aa417442bc4f3be9d92d (patch) | |
tree | 42f4f4ab774a9b3848b315570b0b6a15cea7d4ad /admin/updates.php | |
parent | 798de81516100c4037949c7e73c4c5af1915a088 (diff) |
Merged revision(s) 16928 from trunk:
feature 2703: make it easy for plugins to add tabs in admin screens
centralize all core tabs in one file
git-svn-id: http://piwigo.org/svn/branches/2.4@16929 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/updates.php')
-rw-r--r-- | admin/updates.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/admin/updates.php b/admin/updates.php index 3a2c3609d..bb0337d47 100644 --- a/admin/updates.php +++ b/admin/updates.php @@ -33,10 +33,8 @@ if (isset($_GET['tab'])) else
$page['tab'] = 'pwg';
-$tabsheet = new tabsheet(); +$tabsheet = new tabsheet();
$tabsheet->set_id('updates');
-$tabsheet->add('pwg', l10n('Piwigo Update'), $my_base_url);
-$tabsheet->add('ext', l10n('Extensions Update'), $my_base_url.'&tab=ext');
$tabsheet->select($page['tab']);
$tabsheet->assign();
|