diff options
Diffstat (limited to 'core/controllers/photos.php')
-rw-r--r-- | core/controllers/photos.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/controllers/photos.php b/core/controllers/photos.php index 04553bd1..13185283 100644 --- a/core/controllers/photos.php +++ b/core/controllers/photos.php @@ -56,8 +56,8 @@ class Photos_Controller extends Items_Controller { module::event("photo_changed", $photo); - log::add("content", "Updated photo", log::INFO, "<a href=\"photos/$photo->id\">view</a>"); - message::add(_("Successfully saved photo")); + log::success("content", "Updated photo", "<a href=\"photos/$photo->id\">view</a>"); + message::success(sprintf(_("Saved photo %s"), $photo->title)); print json_encode( array("result" => "success", |