diff options
Diffstat (limited to 'app/controllers/studip_controller.php')
| -rw-r--r-- | app/controllers/studip_controller.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/studip_controller.php b/app/controllers/studip_controller.php index cddb82e..a08a946 100644 --- a/app/controllers/studip_controller.php +++ b/app/controllers/studip_controller.php @@ -717,7 +717,7 @@ abstract class StudipController extends Trails_Controller public function action_url($action) { $arguments = func_get_args(); - array_unshift($arguments, $this->controller_path()); + $arguments[0] = $this->controller_path() . '/' . $arguments[0]; return $this->url_for(...$arguments); } |
