Skip to content
Snippets Groups Projects
Commit 92e61e67 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix hide url if not defined

parent 45c99d9d
No related branches found
No related tags found
No related merge requests found
......@@ -533,7 +533,7 @@ if ($object->fetch($id) >= 0)
print '<td align="center">';
if (empty($obj->source_id) || empty($obj->source_type))
{
print $obj->source_url; // For backward compatibility
print empty($obj->source_url)?'':$obj->source_url; // For backward compatibility
}
else
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment