aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlaurent.duretz <laurent.duretz@piwigo.org>2008-10-15 18:45:04 +0000
committerlaurent.duretz <laurent.duretz@piwigo.org>2008-10-15 18:45:04 +0000
commit9598532f6734864fbf9112711cbd64d901361666 (patch)
tree74ae24c7a530e00b16716283022deb2835be1b7d
parente9b9046d8bcfd705afb0ff1e44af7b0c67914429 (diff)
Issue 894 : Missing slash at the end of URL
git-svn-id: http://piwigo.org/svn/branches/branch-1_7@2749 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r--tools/create_listing_file.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/create_listing_file.php b/tools/create_listing_file.php
index fba2aeaa3..2500973ef 100644
--- a/tools/create_listing_file.php
+++ b/tools/create_listing_file.php
@@ -1213,7 +1213,7 @@ function pwg_generate_start()
$xml_header .= ' generation_date="'.$xml_header_date.'"';
$xml_header .= ' phpwg_version="'.$xml_header_version.'"';
$xml_header .= ' metadata="'.$xml_header_metadata.'"';
- $xml_header .= ' url="'.$xml_header_url.'"';
+ $xml_header .= ' url="'.$xml_header_url.'/"';
$xml_header .= '>'."\n";
fwrite($g_listing, $xml_header);