diff options
Diffstat (limited to 'core/src/OC')
-rw-r--r-- | core/src/OC/constants.js | 2 | ||||
-rw-r--r-- | core/src/OC/routing.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/src/OC/constants.js b/core/src/OC/constants.js index a519ce1a053..d77a2d28c70 100644 --- a/core/src/OC/constants.js +++ b/core/src/OC/constants.js @@ -19,7 +19,7 @@ * along with this program. If not see <http://www.gnu.org/licenses/>. */ -export const coreApps = ['', 'admin','log','core/search','settings','core','3rdparty'] +export const coreApps = ['', 'admin','log','core/search','core','3rdparty'] export const menuSpeed = 50 export const PERMISSION_NONE = 0 export const PERMISSION_CREATE = 4 diff --git a/core/src/OC/routing.js b/core/src/OC/routing.js index 8a8bd508d51..0223a6cfd1e 100644 --- a/core/src/OC/routing.js +++ b/core/src/OC/routing.js @@ -145,7 +145,7 @@ export const filePath = (app, type, file) => { } link += file } else { - if ((app === 'settings' || app === 'core' || app === 'search') && type === 'ajax') { + if ((app === 'core' || app === 'search') && type === 'ajax') { link += '/index.php/' } else { link += '/' |