aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/feedController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-08 17:39:48 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2013-11-08 17:39:48 +0100
commit6e5298390686ce46b02808ad7481a11db4c86dd2 (patch)
tree2fda25b0a730e430bc6a5ee12f53f72661701ecc /app/controllers/feedController.php
parent17f0c56d6859b4ab122caa568a623f931d4d0b8a (diff)
Petits changements mineurs
Diffstat (limited to 'app/controllers/feedController.php')
-rwxr-xr-xapp/controllers/feedController.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/controllers/feedController.php b/app/controllers/feedController.php
index f14ed7997..0fd362065 100755
--- a/app/controllers/feedController.php
+++ b/app/controllers/feedController.php
@@ -186,7 +186,7 @@ class feedController extends ActionController {
$entryDAO->cleanOldEntries ($nb_month_old);
$url = array ();
- if ($flux_update == 1) {
+ if ($flux_update === 1) {
// on a mis un seul flux à jour
$notif = array (
'type' => 'good',
@@ -206,14 +206,14 @@ class feedController extends ActionController {
);
}
- if($i == 1) {
+ if ($i === 1) {
// Si on a voulu mettre à jour qu'un flux
// on filtre l'affichage par ce flux
$feed = reset ($feeds);
$url['params'] = array ('get' => 'f_' . $feed->id ());
}
- if (Request::param ('ajax', 0) == 0) {
+ if (Request::param ('ajax', 0) === 0) {
Session::_param ('notification', $notif);
Request::forward ($url, true);
} else {