diff options
| author | 2014-10-30 19:57:08 +0100 | |
|---|---|---|
| committer | 2014-10-30 19:57:08 +0100 | |
| commit | 58deab37cdd97e93ac25aba574a32befe1db2243 (patch) | |
| tree | 56c618b6dc3620de31917294c69304f61c52f9d6 /app/Controllers/importExportController.php | |
| parent | ba832bef4de4a02df46023b389f752b01d43c98b (diff) | |
Fix Minz_Error::error() -> use default values
Diffstat (limited to 'app/Controllers/importExportController.php')
| -rw-r--r-- | app/Controllers/importExportController.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/app/Controllers/importExportController.php b/app/Controllers/importExportController.php index 8028af8ed..4e2dbd157 100644 --- a/app/Controllers/importExportController.php +++ b/app/Controllers/importExportController.php @@ -11,10 +11,7 @@ class FreshRSS_importExport_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); } require_once(LIB_PATH . '/lib_opml.php'); |
