aboutsummaryrefslogtreecommitdiff
path: root/actions/widgets/add.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-20 14:33:17 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2010-11-20 14:33:17 +0000
commit95c79a67493521d2d9761fde60ccfbf2af48ce87 (patch)
tree57d7652f060a968efab7a6a6842d160bf0c73e5d /actions/widgets/add.php
parent4dcea7b5aa7b6a597a5d2d086f99dee6f57f9004 (diff)
downloadelgg-95c79a67493521d2d9761fde60ccfbf2af48ce87.tar.gz
elgg-95c79a67493521d2d9761fde60ccfbf2af48ce87.tar.bz2
moved save widget settings function to ElggWidget
git-svn-id: http://code.elgg.org/elgg/trunk@7383 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/widgets/add.php')
-rw-r--r--actions/widgets/add.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/actions/widgets/add.php b/actions/widgets/add.php
index 6c2859c21..cdb26ef07 100644
--- a/actions/widgets/add.php
+++ b/actions/widgets/add.php
@@ -14,10 +14,11 @@ $column = get_input('column', 1);
if (!empty($user_guid)) {
$user = get_entity($user_guid);
if ($user && $user->canEdit()) {
- $guid = elgg_create_widget($user->getGUID(), $handler);
+ $guid = elgg_create_widget($user->getGUID(), $handler, $context);
if ($guid) {
$widget = get_entity($guid);
- $widget->setContext($context);
+
+ // position the widget
$widget->move($column, 0);
// send widget html for insertion