aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/entryController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/entryController.php')
-rwxr-xr-xapp/controllers/entryController.php7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/controllers/entryController.php b/app/controllers/entryController.php
index cf510e362..ca702191f 100755
--- a/app/controllers/entryController.php
+++ b/app/controllers/entryController.php
@@ -40,6 +40,13 @@ class entryController extends ActionController {
$entryDAO = new EntryDAO ();
if ($id == false) {
$entryDAO->updateEntries ($values);
+
+ // notif
+ $notif = array (
+ 'type' => 'good',
+ 'content' => 'Tous les flux ont été marqués comme lu'
+ );
+ Session::_param ('notification', $notif);
} else {
$entryDAO->updateEntry ($id, $values);
}