diff options
| author | 2019-08-15 17:19:12 +0200 | |
|---|---|---|
| committer | 2019-08-15 17:19:12 +0200 | |
| commit | de26531178c61c98dcb7b7634c9e5891c302f615 (patch) | |
| tree | 9f425a4bd20959ee3452806955035e2c2c46e08c /app/Controllers/updateController.php | |
| parent | 20c38d7083b188a70ac78362cc6af4c521a479c3 (diff) | |
tec: Provide a Minz_Mailer class (#2476)
* Add Minz_View::_path method (replace change_view)
The `_path` method is more powerful since it allows to choose the file
extension. It is also Minz_Request-agnostic, which is useful to reuse
the Minz_View class in other places.
`change_view` is now deprecated and a warning is logged if we use it.
* Provide a Minz_Mailer to send emails
It uses PHPMailer under the hood and only supports PHP >= 5.5
Diffstat (limited to 'app/Controllers/updateController.php')
| -rw-r--r-- | app/Controllers/updateController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/updateController.php b/app/Controllers/updateController.php index 2be644c85..ebe5e4cc8 100644 --- a/app/Controllers/updateController.php +++ b/app/Controllers/updateController.php @@ -89,7 +89,7 @@ class FreshRSS_update_Controller extends Minz_ActionController { } public function checkAction() { - $this->view->change_view('update', 'index'); + $this->view->_path('update/index.phtml'); if (file_exists(UPDATE_FILENAME)) { // There is already an update file to apply: we don't need to check |
