Skip to content

Commit

Permalink
[FIX] Small fix to correctly report affected table within a devlog me…
Browse files Browse the repository at this point in the history
…ssage.
  • Loading branch information
tschikarski committed Sep 26, 2018
1 parent 79d240a commit a107afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/User/UserHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ private function insertUser($user)
$query = $connectionPool->getQueryBuilderForTable($this->db_user['table']);
$query->insert($this->db_user['table'])->values($user);
if ($this->writeDevLog) {
GeneralUtility::devlog('synchronizeUserData: Inserting $user into DB table ' . $table,
GeneralUtility::devlog('synchronizeUserData: Inserting $user into DB table ' . $this->db_user['table'],
'\TrustCnct\Shibboleth\User\UserHandler', 0, $user);
}
try
Expand Down

0 comments on commit a107afe

Please sign in to comment.