diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2008-05-25 09:20:24 +0200 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-05-25 10:02:09 +0200 |
commit | dcc26041d1dd86d47516e143fd5e475e588180cf (patch) | |
tree | 9cc6fbdf523ca453d763aac3ada55757a43848d9 /themes/default | |
parent | 9ebbaf7dfd6c8c967cb03b92dc944a31f0dee708 (diff) |
fix export, web_path was not set correctly
Signed-off-by: Andreas Unterkircher <unki@netshadow.at>
Diffstat (limited to 'themes/default')
-rw-r--r-- | themes/default/templates/export.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/default/templates/export.tpl b/themes/default/templates/export.tpl index 7f6f2de..d7443de 100644 --- a/themes/default/templates/export.tpl +++ b/themes/default/templates/export.tpl @@ -1,7 +1,7 @@ {include file="header.tpl"} <body> <div id="frame"> - <form action="javascript:#" onsubmit="setViewMode(document.getElementsByName('format')[0].options[document.getElementsByName('format')[0].selectedIndex].value); return false;"> + <form action="javascript:#" onsubmit="setViewMode('{$web_path}', document.getElementsByName('format')[0].options[document.getElementsByName('format')[0].selectedIndex].value); return false;"> <select name="format"> <option value="HTML">HTML</option> <option value="MoinMoin">MoinMoin Wiki</option> |