aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/actions/deletecomment.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-04-07 16:44:37 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-04-07 16:44:37 +0000
commitae88842fce124942780875fef7d0158b8c87d9aa (patch)
tree35a871654e6c5f8a7428311ba0f503a6d726ad71 /mod/profile/actions/deletecomment.php
parent5ebfb769b6f05e4d606f4d94d6c6e9d9104b7973 (diff)
downloadelgg-ae88842fce124942780875fef7d0158b8c87d9aa.tar.gz
elgg-ae88842fce124942780875fef7d0158b8c87d9aa.tar.bz2
Removed windows line endings.
git-svn-id: http://code.elgg.org/elgg/trunk@5657 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/actions/deletecomment.php')
-rw-r--r--mod/profile/actions/deletecomment.php56
1 files changed, 28 insertions, 28 deletions
diff --git a/mod/profile/actions/deletecomment.php b/mod/profile/actions/deletecomment.php
index 48399af4a..0a104eabe 100644
--- a/mod/profile/actions/deletecomment.php
+++ b/mod/profile/actions/deletecomment.php
@@ -1,29 +1,29 @@
-<?php
-/**
- * Elgg profile commentwall: delete message action
- */
-
-// Ensure we're logged in
-if (!isloggedin()) forward();
-
-// Make sure we can get the comment in question
-$annotation_id = (int) get_input('annotation_id');
-
-//make sure that there is a message on the commentwall matching the passed id
-if ($message = get_annotation($annotation_id)) {
- //grab the user or group entity
- $entity = get_entity($message->entity_guid);
- //check to make sure the current user can actually edit the commentwall
- if ($message->canEdit()) {
- //delete the comment
- $message->delete();
- //display message
- system_message(elgg_echo("profile:commentwall:deleted"));
- forward($_SERVER['HTTP_REFERER']);
- }
-
-} else {
- system_message(elgg_echo("profile:commentwall:notdeleted"));
-}
-
+<?php
+/**
+ * Elgg profile commentwall: delete message action
+ */
+
+// Ensure we're logged in
+if (!isloggedin()) forward();
+
+// Make sure we can get the comment in question
+$annotation_id = (int) get_input('annotation_id');
+
+//make sure that there is a message on the commentwall matching the passed id
+if ($message = get_annotation($annotation_id)) {
+ //grab the user or group entity
+ $entity = get_entity($message->entity_guid);
+ //check to make sure the current user can actually edit the commentwall
+ if ($message->canEdit()) {
+ //delete the comment
+ $message->delete();
+ //display message
+ system_message(elgg_echo("profile:commentwall:deleted"));
+ forward($_SERVER['HTTP_REFERER']);
+ }
+
+} else {
+ system_message(elgg_echo("profile:commentwall:notdeleted"));
+}
+
forward($_SERVER['HTTP_REFERER']); \ No newline at end of file