monitoring: Fix missing parameter initialization in MonitoredObject::parseAttributeUrls()

This commit is contained in:
Eric Lippmann 2015-09-03 14:09:16 +02:00
parent 54a45ff338
commit 6a684a97df
1 changed files with 1 additions and 0 deletions

View File

@ -550,6 +550,7 @@ abstract class MonitoredObject implements Filterable
if (empty($urlString)) {
return array();
}
$links = array();
if (strpos($urlString, "' ") === false) {
$links[] = $urlString;
} else {