Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'user_external/lib/imap.php')
-rw-r--r--user_external/lib/imap.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/user_external/lib/imap.php b/user_external/lib/imap.php
index e53fb4605..046ba94c6 100644
--- a/user_external/lib/imap.php
+++ b/user_external/lib/imap.php
@@ -52,11 +52,11 @@ class OC_User_IMAP extends \OCA\user_external\Base {
$uid = str_replace("%40","@",$uid);
}
- $result = OC_DB::executeAudited(
- 'SELECT `userid` FROM `*PREFIX*preferences`'
- . ' WHERE `appid` = "settings" AND `configkey` = "email" AND `configvalue` = ?',
- array($uid)
- );
+ $result = OC_DB::executeAudited(
+ 'SELECT `userid` FROM `*PREFIX*preferences` WHERE `appid`=? AND `configkey`=? AND `configvalue`=?',
+ array('settings','email',$uid)
+ );
+
$users = array();
while ($row = $result->fetchRow()) {
$users[] = $row['userid'];