diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2012-04-13 18:18:08 -0700 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2012-04-13 18:18:08 -0700 |
commit | 90b3ef93ab20ceb49d0e2f5b40a87dd6608d05f4 (patch) | |
tree | 1f50bd287eb8972e1fb67b11df1423541c715810 /actions/photos/image | |
parent | d97db06f5cf897ebe6e346367a8fe0e44c0b19b2 (diff) | |
download | elgg-90b3ef93ab20ceb49d0e2f5b40a87dd6608d05f4.tar.gz elgg-90b3ef93ab20ceb49d0e2f5b40a87dd6608d05f4.tar.bz2 |
Fixed incorrect error message when saving an image without a title.
Diffstat (limited to 'actions/photos/image')
-rw-r--r-- | actions/photos/image/save.php | 2 |
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); } |