diff options
author | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-20 14:01:31 +0000 |
---|---|---|
committer | cash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-20 14:01:31 +0000 |
commit | 58f0a2c30f4111f6b85a1ef05e0f9a04c4d86141 (patch) | |
tree | 7a965b08fd614cd2347e23b1262dac80571441a2 /engine | |
parent | e71f5d4fc6b04776558fcd8be2a306acbae2eec8 (diff) | |
download | elgg-58f0a2c30f4111f6b85a1ef05e0f9a04c4d86141.tar.gz elgg-58f0a2c30f4111f6b85a1ef05e0f9a04c4d86141.tar.bz2 |
fixed bug where widgets were not saving their new position
git-svn-id: http://code.elgg.org/elgg/trunk@7381 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine')
-rw-r--r-- | engine/classes/ElggWidget.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/classes/ElggWidget.php b/engine/classes/ElggWidget.php index 2b6e977fe..e1c975777 100644 --- a/engine/classes/ElggWidget.php +++ b/engine/classes/ElggWidget.php @@ -109,7 +109,7 @@ class ElggWidget extends ElggObject { * @return void * @since 1.8.0 */ - public function move($column, $position) { + public function move($column, $rank) { $options = array( 'type' => 'object', 'subtype' => 'widget', |