summaryrefslogtreecommitdiffstats
path: root/lib/migrate.php
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2013-01-15 07:45:51 -0800
committerBart Visscher <bartv@thisnet.nl>2013-01-15 07:45:51 -0800
commit0da06187f6b1006db67b5d34281fd51a56054d21 (patch)
tree571aaa6707e225d40e42454f18783b719c684b4a /lib/migrate.php
parentbb9cc227c2583adc6b51a1f6d75a9fc8333836b9 (diff)
parent42678096bb408f0955bb5c7f06e1e8b58088ea8b (diff)
downloadnextcloud-server-0da06187f6b1006db67b5d34281fd51a56054d21.tar.gz
nextcloud-server-0da06187f6b1006db67b5d34281fd51a56054d21.zip
Merge pull request #1187 from owncloud/fixing-unused-and-undefined-in-master
Fixing unused and undefined in master
Diffstat (limited to 'lib/migrate.php')
-rw-r--r--lib/migrate.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/migrate.php b/lib/migrate.php
index 62ab00bc332..87bdd016fe4 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;