diff --git a/docs/changelog/6.x.x.txt b/docs/changelog/6.x.x.txt
index dd927a9bc..1ffa5ca94 100644
--- a/docs/changelog/6.x.x.txt
+++ b/docs/changelog/6.x.x.txt
@@ -32,6 +32,8 @@
- fix [ 1234051 ] Recursive loops in addGroupsToGroups
- Added handling for an exception in recurring payment processing where there
was missing data causing a fatal error.
+ - fix [ 1326687 ] Export on windows Apache server doesn't work (with quick
+ fix (Thanks to Sven Opitz)
6.7.6
diff --git a/lib/WebGUI/AssetExportHtml.pm b/lib/WebGUI/AssetExportHtml.pm
index 58735cec0..5ebc01d62 100644
--- a/lib/WebGUI/AssetExportHtml.pm
+++ b/lib/WebGUI/AssetExportHtml.pm
@@ -250,7 +250,7 @@ sub www_exportGenerate {
$filename = $index;
}
if($path) {
- $path = $session{config}{exportPath} . $session{os}{slash} . $path;
+ $path = $session{config}{exportPath} . "/" . $path;
eval { mkpath($path) };
if($@) {
print "Couldn't create $path because $@
\n";
@@ -258,7 +258,7 @@ sub www_exportGenerate {
return;
}
}
- $path .= $session{os}{slash}.$filename;
+ $path .= "/".$filename;
eval { open(FILE, "> $path") or die "$!" };
if ($@) {
print "Couldn't open $path because $@
\n";