Skip to content
Snippets Groups Projects
Commit 92744be2 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #1713 from owncloud/fix-user-enabled

Fix quotes in OC_User::isEnabled
parents b1690731 ab70f9bd
Branches
No related tags found
No related merge requests found
......@@ -608,8 +608,8 @@ class OC_User {
* @return bool
*/
public static function isEnabled($userid) {
$sql = "SELECT `userid` FROM `*PREFIX*preferences`'
.' WHERE `userid` = ? AND `appid` = ? AND `configkey` = ? AND `configvalue` = ?";
$sql = 'SELECT `userid` FROM `*PREFIX*preferences`'
.' WHERE `userid` = ? AND `appid` = ? AND `configkey` = ? AND `configvalue` = ?';
$stmt = OC_DB::prepare($sql);
if ( ! OC_DB::isError($stmt) ) {
$result = $stmt->execute(array($userid, 'core', 'enabled', 'false'));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment