aboutsummaryrefslogtreecommitdiff
path: root/actions/entities/delete.php
diff options
context:
space:
mode:
Diffstat (limited to 'actions/entities/delete.php')
-rw-r--r--actions/entities/delete.php52
1 files changed, 25 insertions, 27 deletions
diff --git a/actions/entities/delete.php b/actions/entities/delete.php
index fb9d98d1c..4f0e3b7ba 100644
--- a/actions/entities/delete.php
+++ b/actions/entities/delete.php
@@ -1,30 +1,28 @@
<?php
- /**
- * Default entity delete action
- *
- * @package Elgg
- * @subpackage Core
- * @author Curverider Ltd
- * @link http://elgg.org/
- */
+/**
+ * Default entity delete action
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @author Curverider Ltd
+ * @link http://elgg.org/
+ */
- require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
-
- gatekeeper();
-
- $guid = get_input('guid');
-
- $entity = get_entity($guid);
-
- if (($entity) && ($entity->canEdit()))
- {
- if ($entity->delete())
- system_message(sprintf(elgg_echo('entity:delete:success'), $guid));
- else
- register_error(sprintf(elgg_echo('entity:delete:fail'), $guid));
- }
- else
+require_once(dirname(dirname(dirname(__FILE__))) . "/engine/start.php");
+
+gatekeeper();
+
+$guid = get_input('guid');
+$entity = get_entity($guid);
+
+if (($entity) && ($entity->canEdit())) {
+ if ($entity->delete()) {
+ system_message(sprintf(elgg_echo('entity:delete:success'), $guid));
+ } else {
register_error(sprintf(elgg_echo('entity:delete:fail'), $guid));
-
- forward($_SERVER['HTTP_REFERER']);
-?> \ No newline at end of file
+ }
+} else {
+ register_error(sprintf(elgg_echo('entity:delete:fail'), $guid));
+}
+
+forward($_SERVER['HTTP_REFERER']); \ No newline at end of file