diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-06 23:30:17 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2013-01-06 23:30:17 +0100 |
commit | 19e604c104e90cdd167efbb416513147ac28c00d (patch) | |
tree | 0d87dcbb550c3b5231c27721703bcdd71b024686 | |
parent | a143e77ee4b1326e10e035c15d7c77e218b4b90c (diff) | |
download | nextcloud-server-19e604c104e90cdd167efbb416513147ac28c00d.tar.gz nextcloud-server-19e604c104e90cdd167efbb416513147ac28c00d.zip |
fixing call of OC_Log::write() - missing parameter
-rw-r--r-- | lib/migrate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/migrate.php b/lib/migrate.php index 5ff8e338a44..8fabbbca927 100644 --- a/lib/migrate.php +++ b/lib/migrate.php @@ -655,7 +655,7 @@ class OC_Migrate{ $query = OC_DB::prepare( "INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )" ); $result = $query->execute( array( $uid, $hash)); if( !$result ) { - OC_Log::write('migration', 'Failed to create the new user "'.$uid.""); + OC_Log::write('migration', 'Failed to create the new user "'.$uid."", OC_Log::ERROR); } return $result ? true : false; |