LDAP: fix debug message with undefined variable

This commit is contained in:
Arthur Schiwon 2012-08-29 19:13:38 +02:00
parent 741a21292e
commit 224e55e590
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ class Jobs {
WHERE `owncloudname` = ? WHERE `owncloudname` = ?
'); ');
foreach($removedGroups as $removedGroup) { foreach($removedGroups as $removedGroup) {
\OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" group "'.$createdGroup.'" was removed.', \OCP\Util::INFO); \OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" group "'.$removedGroup.'" was removed.', \OCP\Util::INFO);
$query->execute(array($removedGroup)); $query->execute(array($removedGroup));
} }
\OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" FINISHED dealing with removed groups.', \OCP\Util::DEBUG); \OCP\Util::writeLog('user_ldap', 'bgJ "updateGroups" FINISHED dealing with removed groups.', \OCP\Util::DEBUG);