- 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
This commit is contained in:
z0rglub
2004-09-18 16:09:47 +00:00
parent aa392c1fdd
commit 094bbe3cee
8 changed files with 1041 additions and 97 deletions
+8 -1
View File
@@ -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')
));