Commit d645aa05 authored by Sebastian Kummer's avatar Sebastian Kummer

Merge pull request #9 in ZP/z-push from...

Merge pull request #9 in ZP/z-push from bugfix/ZP-643-autodiscover-missing-variable-in-log to develop

* commit '4b2a18d7':
  fix(ZP-643): Missing variable in Log sprintf block
parents 1f362fb2 4b2a18d7
......@@ -258,7 +258,7 @@ class ZPushAutodiscover {
if (isset($userDetails[$attrib]) && $userDetails[$attrib]) {
return $userDetails[$attrib];
}
ZLog::Write(LOGLEVEL_WARN, sprintf("The backend was not able to find attribute '%s' of the user. Fall back to the default value."));
ZLog::Write(LOGLEVEL_WARN, sprintf("The backend was not able to find attribute '%s' of the user. Fall back to the default value.", $attrib));
return false;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment