always exists, no need to check for isset()
This commit is contained in:
parent
fd531bd53e
commit
284ee15c8f
1 changed files with 1 additions and 1 deletions
|
|
@ -765,7 +765,7 @@ class Markdown implements MarkdownInterface {
|
|||
$url = $this->encodeURLAttribute($url);
|
||||
|
||||
$result = "<a href=\"$url\"";
|
||||
if (isset($title)) {
|
||||
if ($title) {
|
||||
$title = $this->encodeAttribute($title);
|
||||
$result .= " title=\"$title\"";
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue