summaryrefslogtreecommitdiffstats
path: root/lib/User
diff options
context:
space:
mode:
authorRobin Appelman <icewind1991@gmail.com>2011-04-17 11:09:42 +0200
committerRobin Appelman <icewind1991@gmail.com>2011-04-17 11:10:03 +0200
commitfde08b2389514121e548148a86c88ee303ae72e3 (patch)
tree3f06b133959edcfbb137fd85cba770de74338e65 /lib/User
parent5f69a7c5e5067b0210c4207b588629c25cd42e33 (diff)
downloadnextcloud-server-fde08b2389514121e548148a86c88ee303ae72e3.tar.gz
nextcloud-server-fde08b2389514121e548148a86c88ee303ae72e3.zip
installer now works when using mysql
Diffstat (limited to 'lib/User')
-rw-r--r--lib/User/database.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/User/database.php b/lib/User/database.php
index 5b68d3ff7c2..c413b180589 100644
--- a/lib/User/database.php
+++ b/lib/User/database.php
@@ -51,7 +51,6 @@ class OC_USER_DATABASE extends OC_USER_BACKEND {
public static function createUser( $uid, $password ){
$query = OC_DB::prepare( "SELECT * FROM `*PREFIX*users` WHERE `uid` = ?" );
$result = $query->execute( array( $uid ));
-
// Check if the user already exists
if ( $result->numRows() > 0 ){
return false;