aboutsummaryrefslogtreecommitdiff
path: root/actions/widgets/save.php
diff options
context:
space:
mode:
authorben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-24 11:15:03 +0000
committerben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-06-24 11:15:03 +0000
commit2f9c09fe8e99d52b8ce565da71ba47ae483c1713 (patch)
tree8c12a486498e4465715965df984281befd6c1b4d /actions/widgets/save.php
parent118e59fa7a8980356cd326bef558afb7902af1be (diff)
downloadelgg-2f9c09fe8e99d52b8ce565da71ba47ae483c1713.tar.gz
elgg-2f9c09fe8e99d52b8ce565da71ba47ae483c1713.tar.bz2
Save widget improvements.
git-svn-id: https://code.elgg.org/elgg/trunk@1094 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/widgets/save.php')
-rw-r--r--actions/widgets/save.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/actions/widgets/save.php b/actions/widgets/save.php
index deb4bb911..5032f8a0e 100644
--- a/actions/widgets/save.php
+++ b/actions/widgets/save.php
@@ -15,6 +15,7 @@
$guid = get_input('guid');
$params = $_REQUEST['params'];
$pageurl = get_input('pageurl');
+ $noforward = get_input('noforward',false);
$result = false;
@@ -30,6 +31,7 @@
system_message(elgg_echo('widgets:save:failure'));
}
- forward($_SERVER['HTTP_REFERER']);
+ if (!$noforward)
+ forward($_SERVER['HTTP_REFERER']);
?> \ No newline at end of file