aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/userController.php
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-30 19:57:08 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-10-30 19:57:08 +0100
commit58deab37cdd97e93ac25aba574a32befe1db2243 (patch)
tree56c618b6dc3620de31917294c69304f61c52f9d6 /app/Controllers/userController.php
parentba832bef4de4a02df46023b389f752b01d43c98b (diff)
Fix Minz_Error::error() -> use default values
Diffstat (limited to 'app/Controllers/userController.php')
-rw-r--r--app/Controllers/userController.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/app/Controllers/userController.php b/app/Controllers/userController.php
index 39db1d879..5050571a9 100644
--- a/app/Controllers/userController.php
+++ b/app/Controllers/userController.php
@@ -15,10 +15,7 @@ class FreshRSS_user_Controller extends Minz_ActionController {
*/
public function firstAction() {
if (!FreshRSS_Auth::hasAccess()) {
- Minz_Error::error(
- 403,
- array('error' => array(_t('access_denied')))
- );
+ Minz_Error::error(403);
}
}
@@ -88,8 +85,7 @@ class FreshRSS_user_Controller extends Minz_ActionController {
*/
public function manageAction() {
if (!FreshRSS_Auth::hasAccess('admin')) {
- Minz_Error::error(403,
- array('error' => array(_t('access_denied'))));
+ Minz_Error::error(403);
}
Minz_View::prependTitle(_t('gen.title.user_management') . ' ยท ');