Commit adeb944bdf11c4699aa823d3d888cd53fa0f237b
1 parent
912f420a
Merged in from STABLE trunk...
KTS-3232 "Uno module appears to require editing document conversion scripts" Fixed. Updated config table to include Open Office programPath. Committed By: Conrad Vermeulen Reviewed By: Megan Watson git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/branches/3.5.3-Release-Branch@8854 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
2 changed files
with
5 additions
and
2 deletions
sql/mysql/install/data.sql
| ... | ... | @@ -247,7 +247,9 @@ INSERT INTO `config_settings` VALUES |
| 247 | 247 | (107,'urls','varDirectory','','default','','${fileSystemRoot}/var',1), |
| 248 | 248 | (108,'urls','documentRoot','','default','','${varDirectory}/Documents',0), |
| 249 | 249 | (109,'KnowledgeTree','redirectToBrowse','boolean','default','set to true to redirect to browse screen ','0',1), |
| 250 | -(110,'KnowledgeTree','redirectToBrowseExceptions','','default','if redirectToBrowse is true, adding usernames to this list will force specific users to be redirected to dashboard e.g. \r\nredirectToBrowseExceptions = admin, joebloggs ','',1); | |
| 250 | +(110,'KnowledgeTree','redirectToBrowseExceptions','','default','if redirectToBrowse is true, adding usernames to this list will force specific users to be redirected to dashboard e.g. \r\nredirectToBrowseExceptions = admin, joebloggs ','',1), | |
| 251 | +(111,'openoffice','programPath','','default','The Open Office program directory.','../openoffice/program',1); | |
| 252 | + | |
| 251 | 253 | /*!40000 ALTER TABLE `config_settings` ENABLE KEYS */; |
| 252 | 254 | UNLOCK TABLES; |
| 253 | 255 | ... | ... |
sql/mysql/upgrade/3.5.3/config_settings.sql
| ... | ... | @@ -122,6 +122,7 @@ INSERT INTO `config_settings`(`id`,`group_name`,`item`,`type`,`value`,`helptext` |
| 122 | 122 | (107,'urls','varDirectory','','default','','${fileSystemRoot}/var',1), |
| 123 | 123 | (108,'urls','documentRoot','','default','','${varDirectory}/Documents',0), |
| 124 | 124 | (109,'KnowledgeTree','redirectToBrowse','boolean','default','set to true to redirect to browse screen ','0',1), |
| 125 | -(110,'KnowledgeTree','redirectToBrowseExceptions','','default','if redirectToBrowse is true, adding usernames to this list will force specific users to be redirected to dashboard e.g. \r\nredirectToBrowseExceptions = admin, joebloggs ','',1); | |
| 125 | +(110,'KnowledgeTree','redirectToBrowseExceptions','','default','if redirectToBrowse is true, adding usernames to this list will force specific users to be redirected to dashboard e.g. \r\nredirectToBrowseExceptions = admin, joebloggs ','',1), | |
| 126 | +(111,'openoffice','programPath','','default','The Open Office program directory.','../openoffice/program',1); | |
| 126 | 127 | /*!40000 ALTER TABLE `config_settings` ENABLE KEYS */; |
| 127 | 128 | UNLOCK TABLES; | ... | ... |