template editing bugfix

This commit is contained in:
JT Smith 2004-10-03 22:36:50 +00:00
parent 0bb4091ade
commit 95e032d4dc
2 changed files with 3 additions and 2 deletions

View file

@ -5,7 +5,8 @@
- bugfix [ 1038837 ] Hashing issues (Paul Malabad)
- bugfix [ 1038678 ] 6.2.6- HTML Editor Image/ Collateral
- bugfix [ 1038129 ] Error importing with filemanagerimport.pl
- bugfix [ 1037605 ] Template changes not saved
- bugfix [ 1037531 ] 6.2.6 error (and further back)
6.2.6
- Fixed a GUID bug in the Site Map wobject.

View file

@ -128,7 +128,7 @@ sub www_editTemplate {
$f = WebGUI::HTMLForm->new;
$f->hidden("op","editTemplateSave");
$f->readOnly($session{form}{tid},WebGUI::International::get(503));
$f->raw('<input type="hidden" name="op2" value="'.$session{form}{afterEdit}.' />');
$f->raw('<input type="hidden" name="op2" value="'.$session{form}{afterEdit}.'" />');
if ($session{form}{tid} eq "new") {
$namespaces = WebGUI::SQL->buildHashRef("select distinct(namespace),namespace
from template order by namespace");