3
1
Back

Appending alt/title text under images (extra useful for non-browser users 1e6cc98f41 Various updates, additions $alt_element = $doc->createElement("i", $title_text); } elseif ($title_text && !$alt_text){ $text_element = $doc->createElement("i", $alt_text); $title_element = $doc->createElement("i", $alt_text); } elseif (strpos($title_text, $alt_text) !== false){ // there's both alt and title texts, they're both different, use both. $title_element.

New Pull Request