aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/plugins.php
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-07 02:52:16 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-02-07 02:52:16 +0000
commitfd511ad3dab838e8d7311f0caa452f6da110e281 (patch)
tree3849cf13ea35a033220d10fe68055cdf0eb9a17e /engine/lib/plugins.php
parent1db7dba6a8a12b9066fb01f56054c0c637242076 (diff)
downloadelgg-fd511ad3dab838e8d7311f0caa452f6da110e281.tar.gz
elgg-fd511ad3dab838e8d7311f0caa452f6da110e281.tar.bz2
fixed typo in plugin library
git-svn-id: http://code.elgg.org/elgg/trunk@8059 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 f356ed253..31420a826 100644
--- a/engine/lib/plugins.php
+++ b/engine/lib/plugins.php
@@ -758,7 +758,7 @@ function elgg_get_calling_plugin_entity() {
function find_plugin_usersettings($plugin_id = null, $user_guid = 0) {
$plugin_id = sanitise_string($plugin_id);
$user_guid = (int)$user_guid;
- $db_prefix = get_config('db_prefix');
+ $db_prefix = elgg_get_config('dbprefix');
$ps_prefix = elgg_namespace_plugin_private_setting('user_setting', "$plugin_id:");
$ps_prefix_len = strlen($ps_prefix);