diff options
author | Bart Visscher <github@thisnet.nl> | 2012-10-29 15:31:37 -0700 |
---|---|---|
committer | Bart Visscher <github@thisnet.nl> | 2012-10-29 15:31:37 -0700 |
commit | 9318a9566a0700fd9188656b1b75f90f4ca90298 (patch) | |
tree | 3bbac267eddd1fcd7614b48253d6dc2b7fbd773f /settings | |
parent | 2e1199acb8ea9505cdc876bf72c9ff4df1903f4b (diff) | |
parent | 1f0bc1713fa19d4a0fec70cc8936687d86a919b0 (diff) | |
download | nextcloud-server-9318a9566a0700fd9188656b1b75f90f4ca90298.tar.gz nextcloud-server-9318a9566a0700fd9188656b1b75f90f4ca90298.zip |
Merge pull request #136 from scambra/users-fixes
fix settings' routes
Diffstat (limited to 'settings')
-rw-r--r-- | settings/routes.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/routes.php b/settings/routes.php index 64f4650eb8c..8239fe005db 100644 --- a/settings/routes.php +++ b/settings/routes.php @@ -24,13 +24,13 @@ $this->create('settings_admin', '/settings/admin') $this->create('settings_ajax_userlist', '/settings/ajax/userlist') ->actionInclude('settings/ajax/userlist.php'); $this->create('settings_ajax_createuser', '/settings/ajax/createuser.php') - ->actionInclude('settings_ajax_createuser'); + ->actionInclude('settings/ajax/createuser.php'); $this->create('settings_ajax_removeuser', '/settings/ajax/removeuser.php') ->actionInclude('settings/ajax/removeuser.php'); $this->create('settings_ajax_setquota', '/settings/ajax/setquota.php') ->actionInclude('settings/ajax/setquota.php'); $this->create('settings_ajax_creategroup', '/settings/ajax/creategroup.php') - ->actionInclude('settings_ajax_creategroup'); + ->actionInclude('settings/ajax/creategroup.php'); $this->create('settings_ajax_togglegroups', '/settings/ajax/togglegroups.php') ->actionInclude('settings/ajax/togglegroups.php'); $this->create('settings_ajax_togglesubadmins', '/settings/ajax/togglesubadmins.php') |