Protect access to rel attribute in Network\Probe
This commit is contained in:
parent
230c0a50e8
commit
f597f3b378
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ class Probe
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (($attributes["rel"] == "lrdd") && !empty($attributes["template"])) {
|
if (!empty($attributes["rel"]) && $attributes["rel"] == "lrdd" && !empty($attributes["template"])) {
|
||||||
$type = (empty($attributes["type"]) ? '' : $attributes["type"]);
|
$type = (empty($attributes["type"]) ? '' : $attributes["type"]);
|
||||||
|
|
||||||
$lrdd[$type] = $attributes["template"];
|
$lrdd[$type] = $attributes["template"];
|
||||||
|
|
Loading…
Reference in a new issue