aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorlaurent.duretz <laurent.duretz@piwigo.org>2008-10-15 18:45:29 +0000
committerlaurent.duretz <laurent.duretz@piwigo.org>2008-10-15 18:45:29 +0000
commit478291598f09d2055c72b3ff49d6a622e7648f40 (patch)
tree98e5072c20b17f2c2d9358a2eb49b467e86c7561 /tools
parent5ce101c1939bcea8b3171d3d0cf494b35a9650f3 (diff)
Issue 894 : Missing slash at the end of URL
git-svn-id: http://piwigo.org/svn/branches/2.0@2750 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 3f92fb74f..338b6c02d 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);