Commit 87a1782f8bc064470ab69dc33f2cef50ebe7e1cc
1 parent
6be0cad8
KTS-3495
"Error when navigating to System Configuration items under Linux" Fixed. Fixed a capitalisation issue that only effected Linux. plugin_helper table needs to be cleaned out after this fix. Committed By: Kevin Fourie Reviewed By: Conrad Vermeulen git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@8794 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
6 additions
and
6 deletions
plugins/ktcore/KTCorePlugin.php
| ... | ... | @@ -319,27 +319,27 @@ class KTCorePlugin extends KTPlugin { |
| 319 | 319 | //config |
| 320 | 320 | $this->registerAdminPage('emailconfigpage', 'EmailConfigPageDispatcher', 'config', |
| 321 | 321 | _kt('Email Settings'), _kt('Manage Email Settings'), |
| 322 | - '/admin/configsettings.php', null); | |
| 322 | + '/admin/configSettings.php', null); | |
| 323 | 323 | |
| 324 | 324 | $this->registerAdminPage('uiconfigpage', 'UIConfigPageDispatcher', 'config', |
| 325 | 325 | _kt('User Interface Settings'), _kt('Manage User Interface Settings'), |
| 326 | - '/admin/configsettings.php', null); | |
| 326 | + '/admin/configSettings.php', null); | |
| 327 | 327 | |
| 328 | 328 | $this->registerAdminPage('searchandindexingconfigpage', 'SearchAndIndexingConfigPageDispatcher', 'config', |
| 329 | 329 | _kt('Search and Indexing Settings'), _kt('Manage Search and Indexing Settings'), |
| 330 | - '/admin/configsettings.php', null); | |
| 330 | + '/admin/configSettings.php', null); | |
| 331 | 331 | |
| 332 | 332 | $this->registerAdminPage('clientconfigpage', 'ClientSettingsConfigPageDispatcher', 'config', |
| 333 | 333 | _kt('Client Tools Settings'), _kt('Manage Client Tools Settings'), |
| 334 | - '/admin/configsettings.php', null); | |
| 334 | + '/admin/configSettings.php', null); | |
| 335 | 335 | |
| 336 | 336 | $this->registerAdminPage('generalconfigpage', 'GeneralConfigPageDispatcher', 'config', |
| 337 | 337 | _kt('General Settings'), _kt('Manage General Settings'), |
| 338 | - '/admin/configsettings.php', null); | |
| 338 | + '/admin/configSettings.php', null); | |
| 339 | 339 | |
| 340 | 340 | $this->registerAdminPage('i18nconfigpage', 'i18nConfigPageDispatcher', 'config', |
| 341 | 341 | _kt('Internationalisation Settings'), _kt('Manage Internationalisation Settings'), |
| 342 | - '/admin/configsettings.php', null); | |
| 342 | + '/admin/configSettings.php', null); | |
| 343 | 343 | |
| 344 | 344 | // misc |
| 345 | 345 | $this->registerAdminPage('helpmanagement', 'ManageHelpDispatcher', 'misc', | ... | ... |