Call handleConfigureAction() even for GET requests

See https://github.com/FreshRSS/FreshRSS/issues/252
This commit is contained in:
Marien Fressinaud
2015-01-08 14:30:05 +01:00
parent e86a6097c8
commit 5bd7997d41
2 changed files with 2 additions and 5 deletions

View File

@@ -49,10 +49,7 @@ class FreshRSS_extension_Controller extends Minz_ActionController {
}
$this->view->extension = $ext;
if (Minz_Request::isPost()) {
$this->view->extension->handleConfigureAction();
}
$this->view->extension->handleConfigureAction();
}
/**

View File

@@ -104,7 +104,7 @@ class Minz_Extension {
}
/**
* Handle the configure POST action.
* Handle the configure action.
*
* It must be redefined by child classes.
*/