Commit d98e877b by pupi1985

Removed @ operator

parent 3ea444d4
......@@ -87,7 +87,7 @@
{
$user=qa_get_logged_in_user_cache();
return @$user[$field];
return isset($user[$field]) ? $user[$field] : null;
}
......
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