diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-11 10:28:28 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-11 10:28:28 +0000 |
commit | 60a301bb4dc5503ddcb67b8cf201554a0c459685 (patch) | |
tree | 49440e90eeac85f921893f02517c3485f1cd2e04 /mod/groups/actions/edit.php | |
parent | 310eeabd5397da75352280c7e24efd504dc11293 (diff) | |
download | elgg-60a301bb4dc5503ddcb67b8cf201554a0c459685.tar.gz elgg-60a301bb4dc5503ddcb67b8cf201554a0c459685.tar.bz2 |
Using register_error on errors rather than system_message
git-svn-id: https://code.elgg.org/elgg/trunk@1398 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/groups/actions/edit.php')
-rw-r--r-- | mod/groups/actions/edit.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/groups/actions/edit.php b/mod/groups/actions/edit.php index 7965625e8..75ae1f80f 100644 --- a/mod/groups/actions/edit.php +++ b/mod/groups/actions/edit.php @@ -31,7 +31,7 @@ $group = new ElggGroup($group_guid); // load if present, if not create a new group if (($group_guid) && (!$group->canEdit())) { - system_message(elgg_echo("groups:cantedit")); + register_error(elgg_echo("groups:cantedit")); forward($_SERVER['HTTP_REFERER']); exit; @@ -48,7 +48,7 @@ // Validate create if (!$group->title) { - system_message(elgg_echo("groups:notitle")); + register_error(elgg_echo("groups:notitle")); forward($_SERVER['HTTP_REFERER']); exit; |