diff options
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 0eb83913b..df807e3f7 100644 --- a/engine/classes/ElggWidget.php +++ b/engine/classes/ElggWidget.php @@ -140,7 +140,7 @@ class ElggWidget extends ElggObject { $this->order = $widgets[$rank]->order; for ($index = $rank; $index < count($widgets); $index++) { if ($widgets[$index]->guid != $this->guid) { - $widgets[$index]-> order += 10; + $widgets[$index]->order += 10; } } } |