bugfixes and preparing for 6.2.3 release

This commit is contained in:
JT Smith 2004-09-16 20:36:17 +00:00
parent 1713df81c6
commit eeecbe8afb
10 changed files with 47 additions and 18 deletions

View file

@ -13,6 +13,14 @@
dir (Yary Hluchan)
- bugfix [ 1027684 ] cp silent failure in Attatchment.pm (Yary Hluchan)
- bugfix [ 1027681 ] Some warnings hard to track down (Yary Hluchan)
- bugfix [ 1027950 ] Collateral problem(s)
- bugfix [ 1028110 ] 6.2.2 PageTree doesn't format AND move buttons don't
work
- bugfix [ 1027687 ] Events List does not show events
- bugfix [ 1028054 ] 6.2.2 USS uploads do not show on list
- Fixed a problem with the dTree navigation template.
- bugfix [ 998249 ] Moving Survey Questions - Incorrect Redirection
- bugfix [ 1029170 ] Forum: Sorting thread by date
6.2.2

File diff suppressed because one or more lines are too long

View file

@ -1,3 +1,7 @@
insert into webguiVersion values ('6.2.3','upgrade',unix_timestamp());
update collateralFolder set parentId='-1' where parentId='0';
delete from template where namespace='Navigation' and templateId='6';
INSERT INTO template VALUES ('6','dtree','^StyleSheet(\"<tmpl_var session.config.extrasURL>/Navigation/dtree/dtree.css\");\r\n^JavaScript(\"<tmpl_var session.config.extrasURL>/Navigation/dtree/dtree.js\");\r\n\r\n<tmpl_if session.var.adminOn>\r\n<tmpl_var config.button>\r\n</tmpl_if>\r\n\r\n<script>\r\n// Path to dtree directory\r\n_dtree_url = \"<tmpl_var session.config.extrasURL>/Navigation/dtree/\";\r\n</script>\r\n\r\n<div class=\"dtree\">\r\n<script type=\"text/javascript\">\r\n<!--\r\n d = new dTree(\'d\');\r\n <tmpl_loop page_loop>\r\n d.add(\r\n \'<tmpl_var page.pageId>\',\r\n <tmpl_if __first__>-99<tmpl_else>\'<tmpl_var page.parentId>\'</tmpl_if>,\r\n \'<tmpl_var page.menuTitle>\',\r\n \'<tmpl_var page.url>\',\r\n \'<tmpl_var page.synopsis>\'\r\n <tmpl_if page.newWindow>,\'_blank\'</tmpl_if>\r\n );\r\n </tmpl_loop>\r\n document.write(d);\r\n//-->\r\n</script>\r\n\r\n</div>','Navigation',1,1);