bugs fixed

This commit is contained in:
JT Smith 2004-09-24 22:31:45 +00:00
parent e6818b58fc
commit 5f33a4a15d
11 changed files with 55 additions and 34 deletions

View file

@ -13,6 +13,13 @@
- Fixed a problem with the new export mechanism where it would just stop and
not report an error if it ran into a problem with creating folders and
files.
- bugfix [ 1033998 ] ^RootTitle does not work
- bugfix [ 1031987 ] no upgrade script in 6.2.4
- bugfix [ 1030998 ] HTML Collateral Manager Issues (Harlan Barnes)
- Updated some of the template help. (Colin Kuskie)
- bugfix [ 1023800 ] USS - Read more
- bugfix [ 1033204 ] parentId empty when creating new root
- bugfix [ 998252 ] No Answers in Survey Causes Endless Loop
6.2.4

View file

@ -1,5 +1,6 @@
insert into webguiVersion values ('6.2.5','upgrade',unix_timestamp());
-- Fix HTMLArea 3 template bug / Len Kranendonk 20040924
update template set template='^JavaScript(\"<tmpl_var session.config.extrasURL>/textFix.js\");\r\n<tmpl_if htmlArea3.supported> \r\n\r\n^RawHeadTags(\r\n <script type=\'text/javascript\'> \r\n _editor_url = \'<tmpl_var session.config.extrasURL>/htmlArea3/\'; \r\n _editor_lang = \'en\'; \r\n </script>\r\n\r\n <script type=\'text/javascript\' src=\'<tmpl_var session.config.extrasURL>/htmlArea3/htmlarea.js\'> \r\n </script>\r\n\r\n <script language=\'JavaScript\'> \r\n HTMLArea.loadPlugin(\'TableOperations\'); \r\n </script>\r\n);\r\n\r\n<script language=\"JavaScript\"> \r\nfunction initEditor() { \r\n editor = new HTMLArea(\"<tmpl_var form.name>\"); \r\n editor.registerPlugin(TableOperations); \r\n\r\n setTimeout(function() { \r\n editor.generate(); \r\n }, 500); \r\n return false; \r\n} \r\nwindow.setTimeout(\"initEditor()\", 250); \r\n</script> \r\n\r\n</tmpl_if> \r\n\r\n<tmpl_var textarea> ' where templateId=6 and namespace='richEditor';
update page set parentId=0 where parentId is null;
update page set parentId=0 where parentId='';