aboutsummaryrefslogtreecommitdiffstats
path: root/admin.php
diff options
context:
space:
mode:
authorz0rglub <z0rglub@piwigo.org>2004-09-18 16:09:47 +0000
committerz0rglub <z0rglub@piwigo.org>2004-09-18 16:09:47 +0000
commit094bbe3cee63806dbdfba108f81817e3a85dada9 (patch)
treef453667bde031d92bf8c4a041ae28c6eac531193 /admin.php
parentaa392c1fdd3139ddbb1751166364b2ee83128b3d (diff)
- new version of create_file_listing.php for future 1.4 branch
- new feature : remote site management (generate listing, update, clean, delete) - on category page, no display of filesize if info not available in database git-svn-id: http://piwigo.org/svn/trunk@526 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin.php')
-rw-r--r--admin.php9
1 files changed, 8 insertions, 1 deletions
diff --git a/admin.php b/admin.php
index 83714c0d6..c4c8c6faf 100644
--- a/admin.php
+++ b/admin.php
@@ -144,6 +144,12 @@ switch ( $_GET['page'] )
$title = $lang['title_picmod'];
$page_valide = true;
break;
+ case 'remote_site' :
+ {
+ $title = $lang['remote_sites'];
+ $page_valide = true;
+ break;
+ }
default:
$title = $lang['title_default']; break;
}
@@ -181,7 +187,7 @@ $template->assign_vars(array(
'L_GALLERY_INDEX'=>$lang['gallery_index'],
'L_GENERAL'=>$lang['general'],
'L_CONFIG'=>$lang['config'],
- 'L_SITES'=>$lang['remote_site'],
+ 'L_SITES'=>$lang['remote_sites'],
'L_DEFAULT'=>$lang['gallery_default'],
'L_PHPINFO'=>$lang['phpinfos'],
'L_HISTORY'=>$lang['history'],
@@ -212,6 +218,7 @@ $template->assign_vars(array(
'U_THUMBNAILS'=>add_session_id($link_start.'thumbnail' ),
'U_HISTORY'=>add_session_id($link_start.'stats' ),
'U_FAQ'=>add_session_id($link_start.'help' ),
+ 'U_SITES'=>add_session_id($link_start.'remote_site'),
'U_RETURN'=>add_session_id(PHPWG_ROOT_PATH.'category.php')
));