aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/plugins.php
diff options
context:
space:
mode:
authorbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-09 01:25:42 +0000
committerbrettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-09 01:25:42 +0000
commit2bb58d49502f22c095e8baaa299bc10095f158de (patch)
treef5097890176d18df7dc7ba119452a4bd9140ff9b /engine/lib/plugins.php
parent0154f867118ce33b2cfaa51677436e00502e223f (diff)
downloadelgg-2bb58d49502f22c095e8baaa299bc10095f158de.tar.gz
elgg-2bb58d49502f22c095e8baaa299bc10095f158de.tar.bz2
Refs #2869: Fixed problems when deleting user settings using wrapper function.
git-svn-id: http://code.elgg.org/elgg/trunk@8085 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/plugins.php')
-rw-r--r--engine/lib/plugins.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/plugins.php b/engine/lib/plugins.php
index 26ec2c726..1605ed76f 100644
--- a/engine/lib/plugins.php
+++ b/engine/lib/plugins.php
@@ -875,7 +875,7 @@ function clear_plugin_usersetting($name, $user_guid = 0, $plugin_id = '') {
return false;
}
- return $plugin->removeUserSetting($user_guid, $name);
+ return $plugin->removeUserSetting($name, $user_guid);
}
/**