Commit 6be0cad8406290d91311a0933c90206cbbcca6a4
1 parent
1e6e2c26
KTS-3493
"redirectToBrowse and redirectToBrowseExceptions are not found in config admin section" Fixed. Added items. Committed By: Kevin Fourie Reviewed By: Conrad Vermeulen git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8791 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
3 deletions
plugins/ktcore/admin/configSettings.php
| ... | ... | @@ -196,9 +196,8 @@ class GeneralConfigPageDispatcher extends BaseConfigDispatcher |
| 196 | 196 | function do_main() { |
| 197 | 197 | |
| 198 | 198 | //get config settings from db |
| 199 | - $sQuery = 'select id, group_name, item, type, value, helptext, default_value from config_settings where | |
| 200 | - item = \'schedulerInterval\' or item = \'fakeMimetype\' | |
| 201 | - or item = \'browseToUnitFolder\' order by group_name'; | |
| 199 | + $sQuery = 'select id, group_name, item, type, value, helptext, default_value from config_settings where item = \'schedulerInterval\' or item = \'fakeMimetype\' | |
| 200 | + or item = \'browseToUnitFolder\' or item = \'redirectToBrowse\' or item = \'redirectToBrowseExceptions\' order by group_name'; | |
| 202 | 201 | return parent::do_main($sQuery); |
| 203 | 202 | } |
| 204 | 203 | } | ... | ... |