aboutsummaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorBrett Profitt <brett.profitt@gmail.com>2012-04-13 18:18:08 -0700
committerBrett Profitt <brett.profitt@gmail.com>2012-04-13 18:18:08 -0700
commit90b3ef93ab20ceb49d0e2f5b40a87dd6608d05f4 (patch)
tree1f50bd287eb8972e1fb67b11df1423541c715810 /actions
parentd97db06f5cf897ebe6e346367a8fe0e44c0b19b2 (diff)
downloadelgg-90b3ef93ab20ceb49d0e2f5b40a87dd6608d05f4.tar.gz
elgg-90b3ef93ab20ceb49d0e2f5b40a87dd6608d05f4.tar.bz2
Fixed incorrect error message when saving an image without a title.
Diffstat (limited to 'actions')
-rw-r--r--actions/photos/image/save.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/photos/image/save.php b/actions/photos/image/save.php
index 535ae8bbb..1cb65b1e8 100644
--- a/actions/photos/image/save.php
+++ b/actions/photos/image/save.php
@@ -16,7 +16,7 @@ $guid = get_input('guid');
elgg_make_sticky_form('tidypics');
if (empty($title)) {
- register_error(elgg_echo("album:blank"));
+ register_error(elgg_echo("image:blank"));
forward(REFERER);
}