aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorlaurent.duretz <laurent.duretz@piwigo.org>2008-10-15 18:45:47 +0000
committerlaurent.duretz <laurent.duretz@piwigo.org>2008-10-15 18:45:47 +0000
commita5aa24e2133978f5ce099255990a5e13ead53f55 (patch)
treee5eadf73e2fe385f735a93c4ea1088d41e1d8da4 /tools
parent682220bded5b06a15943d2c0b65978fbcf3c43f1 (diff)
Issue 894 : Missing slash at the end of URL
git-svn-id: http://piwigo.org/svn/trunk@2751 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'tools')
-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 a7662b816..e49bc2634 100644
--- a/tools/create_listing_file.php
+++ b/tools/create_listing_file.php
@@ -1209,7 +1209,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);