- bug 180 fixed: remote_site.tpl doesn't validate.

- translation bug fixed: generate_file_listing.php doesn't exist, it's
  create_listing_file.php !


git-svn-id: http://piwigo.org/svn/trunk@927 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
plegall
2005-11-08 21:19:19 +00:00
parent 5282ee6fb1
commit 429a108ff1
5 changed files with 23 additions and 8 deletions
+7 -1
View File
@@ -714,6 +714,12 @@ SELECT id, galleries_url
WHERE id != 1
;';
$result = pwg_query($query);
if (mysql_num_rows($result) > 0)
{
$template->assign_block_vars('sites', array());
}
while ($row = mysql_fetch_array($result))
{
$base_url = PHPWG_ROOT_PATH.'admin.php';
@@ -722,7 +728,7 @@ while ($row = mysql_fetch_array($result))
$base_url.= '&action=';
$template->assign_block_vars(
'site',
'sites.site',
array(
'NAME' => $row['galleries_url'],
'U_GENERATE' => add_session_id($base_url.'generate'),