diff options
author | Cash Costello <cash.costello@gmail.com> | 2011-10-08 18:33:37 -0400 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2011-10-08 18:33:37 -0400 |
commit | c8bbc359656ced62de84511bb7bd8cb304609abb (patch) | |
tree | e387e829680515a7e085be51f832f4b85e204e9e /engine/lib/plugins.php | |
parent | f7ae8c1440dcb56dc7a2133d46ab50abf80398d8 (diff) | |
download | elgg-c8bbc359656ced62de84511bb7bd8cb304609abb.tar.gz elgg-c8bbc359656ced62de84511bb7bd8cb304609abb.tar.bz2 |
Fixes #3743 returning bool instead of int when setting a private setting
Diffstat (limited to 'engine/lib/plugins.php')
-rw-r--r-- | engine/lib/plugins.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/lib/plugins.php b/engine/lib/plugins.php index 853e5663d..a9e8b21bc 100644 --- a/engine/lib/plugins.php +++ b/engine/lib/plugins.php @@ -894,7 +894,7 @@ function elgg_get_plugin_user_setting($name, $user_guid = null, $plugin_id = nul * @param string $plugin_id Optional plugin name, if not specified * then it is detected from where you are calling from. * - * @return int|false + * @return bool * @since 1.8.0 */ function elgg_set_plugin_setting($name, $value, $plugin_id = null) { |