diff options
author | Bart Visscher <bartv@thisnet.nl> | 2013-02-14 22:16:48 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2013-02-14 22:16:48 +0100 |
commit | 1ef2ecd6e84321056f654e8634d8df5adbfb18d0 (patch) | |
tree | 489ee011a6c53e78e80fd2225ef1fcee7530d7e9 /apps/user_ldap/appinfo/update.php | |
parent | bfe6334cd9d50ce99f0a6fd02c1aa0dc43b2b7e9 (diff) | |
download | nextcloud-server-1ef2ecd6e84321056f654e8634d8df5adbfb18d0.tar.gz nextcloud-server-1ef2ecd6e84321056f654e8634d8df5adbfb18d0.zip |
Style cleanup user_ldap
Diffstat (limited to 'apps/user_ldap/appinfo/update.php')
-rw-r--r-- | apps/user_ldap/appinfo/update.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/user_ldap/appinfo/update.php b/apps/user_ldap/appinfo/update.php index bc32d4ef4cc..2fcbf1902ac 100644 --- a/apps/user_ldap/appinfo/update.php +++ b/apps/user_ldap/appinfo/update.php @@ -58,7 +58,9 @@ foreach($objects as $object) { try { $updateQuery->execute(array($newDN, $uuid, $dn['ldap_dn'])); } catch(Exception $e) { - \OCP\Util::writeLog('user_ldap', 'Could not update '.$object.' '.$dn['ldap_dn'].' in the mappings table. ', \OCP\Util::WARN); + \OCP\Util::writeLog('user_ldap', + 'Could not update '.$object.' '.$dn['ldap_dn'].' in the mappings table. ', + \OCP\Util::WARN); } } |