mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-05-24 08:14:56 -04:00
Début de mode multi-utilisateur avec http_auth
+ Légère optimisation de Minz_View. + Encore plus de tests de bibliothèques dans install.php Contribue à https://github.com/marienfressinaud/FreshRSS/issues/126 et https://github.com/marienfressinaud/FreshRSS/issues/303
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
|
||||
class FreshRSS_entry_Controller extends Minz_ActionController {
|
||||
public function firstAction () {
|
||||
if (login_is_conf ($this->view->conf) && !is_logged ()) {
|
||||
if (!$this->view->loginOk) {
|
||||
Minz_Error::error (
|
||||
403,
|
||||
array ('error' => array (Minz_Translate::t ('access_denied')))
|
||||
@@ -38,7 +38,7 @@ class FreshRSS_entry_Controller extends Minz_ActionController {
|
||||
$nextGet = Minz_Request::param ('nextGet', $get);
|
||||
$idMax = Minz_Request::param ('idMax', 0);
|
||||
|
||||
$is_read = !!$is_read;
|
||||
$is_read = (bool)$is_read;
|
||||
|
||||
$entryDAO = new FreshRSS_EntryDAO ();
|
||||
if ($id == false) {
|
||||
|
||||
Reference in New Issue
Block a user