aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/entryController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/entryController.php')
-rwxr-xr-xapp/controllers/entryController.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/app/controllers/entryController.php b/app/controllers/entryController.php
index f5277fa6d..d812587cf 100755
--- a/app/controllers/entryController.php
+++ b/app/controllers/entryController.php
@@ -89,6 +89,7 @@ class entryController extends ActionController {
if ($entry != false) {
$values = array (
'is_favorite' => $is_fav,
+ 'lastUpdate' => time ()
);
$entryDAO->updateEntry ($entry->id (), $values);
@@ -119,7 +120,8 @@ class entryController extends ActionController {
$values = array (
'annotation' => $note,
- 'is_public' => $public
+ 'is_public' => $public,
+ 'lastUpdate' => time ()
);
if ($entryDAO->updateEntry ($id, $values)) {