Home
last modified time | relevance | path

Searched refs:htmlrep (Results 1 – 1 of 1) sorted by relevance

/dokuwiki/inc/
H A DMailer.class.php198 * @param array $htmlrep replacements to apply on the HTML part, null to use $textrep (urls wrapped in <a> tags)
202 public function setBody($text, $textrep = null, $htmlrep = null, $html = null, $wrap = true)
205 $htmlrep = (array)$htmlrep;
228 if (isset($htmlrep[$key])) continue;
230 $htmlrep[$key] = '<a href="' . hsc($value) . '">' . hsc($value) . '</a>';
232 $htmlrep[$key] = hsc($value);
245 $hrep = array_merge($this->replacements['html'], $htmlrep);
192 setBody($text, $textrep = null, $htmlrep = null, $html = null, $wrap = true) global() argument