diff options
| author | 2016-04-24 14:51:35 +0200 | |
|---|---|---|
| committer | 2016-04-24 14:51:35 +0200 | |
| commit | f08d991d1a83868c5035681dae3dc8da2f8b8771 (patch) | |
| tree | 0f0de7c438997ccac9975ead6ce01431715ad3b7 /app/Controllers/entryController.php | |
| parent | 5bb45c2e2c19ef589521b4650618bb4910776110 (diff) | |
| parent | 6b787c7408ecad4271c19e7c92edbad3f8df4330 (diff) | |
Merge pull request #1136 from Alkarex/entry_post
Error message when accessing entry controller by GET
Diffstat (limited to 'app/Controllers/entryController.php')
| -rwxr-xr-x | app/Controllers/entryController.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/Controllers/entryController.php b/app/Controllers/entryController.php index 1d9989f40..bff1073ef 100755 --- a/app/Controllers/entryController.php +++ b/app/Controllers/entryController.php @@ -46,6 +46,7 @@ class FreshRSS_entry_Controller extends Minz_ActionController { if ($id === false) { // id is false? It MUST be a POST request! if (!Minz_Request::isPost()) { + Minz_Request::bad(_t('feedback.access.not_found'), array('c' => 'index', 'a' => 'index')); return; } |
