From 7cd8ee2360ad7b383af51f69c0dc77260c47314f Mon Sep 17 00:00:00 2001 From: Cash Costello Date: Fri, 27 Jan 2012 07:37:03 -0500 Subject: Fixes #1808 using correct message function in profile actions --- actions/avatar/crop.php | 2 +- actions/profile/fields/add.php | 1 - actions/profile/fields/delete.php | 1 - actions/profile/fields/reorder.php | 4 ++-- 4 files changed, 3 insertions(+), 5 deletions(-) (limited to 'actions') diff --git a/actions/avatar/crop.php b/actions/avatar/crop.php index 6d71b6f06..f2b812c4f 100644 --- a/actions/avatar/crop.php +++ b/actions/avatar/crop.php @@ -46,7 +46,7 @@ foreach ($icon_sizes as $name => $size_info) { $file->delete(); } - system_message(elgg_echo('avatar:resize:fail')); + register_error(elgg_echo('avatar:resize:fail')); forward(REFERER); } } diff --git a/actions/profile/fields/add.php b/actions/profile/fields/add.php index b35df1549..fce783092 100644 --- a/actions/profile/fields/add.php +++ b/actions/profile/fields/add.php @@ -2,7 +2,6 @@ /** * Elgg profile plugin edit default profile action * - * @package ElggProfile */ $label = get_input('label'); diff --git a/actions/profile/fields/delete.php b/actions/profile/fields/delete.php index 26ab48cba..9879feb3f 100644 --- a/actions/profile/fields/delete.php +++ b/actions/profile/fields/delete.php @@ -2,7 +2,6 @@ /** * Elgg profile plugin edit default profile action removal * - * @package ElggProfile */ $id = get_input('id'); diff --git a/actions/profile/fields/reorder.php b/actions/profile/fields/reorder.php index dd7a682a6..27c716749 100644 --- a/actions/profile/fields/reorder.php +++ b/actions/profile/fields/reorder.php @@ -2,11 +2,11 @@ /** * Elgg profile plugin reorder fields * - * @package ElggProfile */ $ordering = get_input('fieldorder'); $result = elgg_save_config('profile_custom_fields', $ordering); -exit; \ No newline at end of file +// called by ajax so we exit +exit; -- cgit v1.2.3