fixed a double // problem with export, and added a missing entry to the change log

This commit is contained in:
JT Smith 2007-03-12 15:16:38 +00:00
parent ec569fdd6a
commit 456ec9dd0b
2 changed files with 2 additions and 0 deletions

View file

@ -13,6 +13,7 @@
- Changed Manage Revisions screen to order revisions by descending revision
date.
- fix: 7.4 Editing SQL Form seems to break site ...?
- rfe: Export & files
- URLs that would have been created like page.html/article.html are now
created like page/article.html to make them look more realistic.
- fix: Fixing bad link on the Event page to the search engine. Added a new

View file

@ -144,6 +144,7 @@ sub _exportAsHtml {
# output which page we're exporting
my $pathWithFilename = $path.'/'.$filename;
$pathWithFilename =~ s{//}{/}g;
unless ($quiet) {
$self->session->output->print(sprintf($i18n->get('exporting page'), $pathWithFilename));
}