diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-19 12:43:51 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-19 12:43:51 +0000 |
commit | b70654070d83323853f808beccc6780cfcd51ce4 (patch) | |
tree | 167e1ba85535a50107d85be5ca51689968026e74 /actions/widgets/move.php | |
parent | 4533dcf9aeead704f346db038c5b692512aab890 (diff) | |
download | elgg-b70654070d83323853f808beccc6780cfcd51ce4.tar.gz elgg-b70654070d83323853f808beccc6780cfcd51ce4.tar.bz2 |
moved some widget functionality into ElggWidget class
git-svn-id: http://code.elgg.org/elgg/trunk@7348 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'actions/widgets/move.php')
-rw-r--r-- | actions/widgets/move.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/widgets/move.php b/actions/widgets/move.php index 2747c149f..276dcb55e 100644 --- a/actions/widgets/move.php +++ b/actions/widgets/move.php @@ -14,7 +14,7 @@ $user = get_loggedin_user(); $widget = get_entity($guid); if ($widget && $user->canEdit()) { - elgg_move_widget($widget, $widget->context, $column, $position); + $widget->move($column, $position); forward(REFERER); } |