Hi! Nice work :)
I caught a typo on line 576
protected function char_filter($text, $node = NULL)
{
if (isset($this->_charfilter_handler)) {
return call_user_func($this->_rawlink_handler,$text,$node);
} else {
return htmlspecialchars($text);
}
}
I changed this to
protected function char_filter($text, $node = NULL)
{
if (isset($this->_charfilter_handler)) {
return call_user_func($this->_charfilter_handler,$text,$node);
} else {
return htmlspecialchars($text);
}
}
and now it's working beautifully
thanks!
On Jun 19, 12:20 am, Henrik Bechmann <
hbechm...@gmail.com> wrote:
> All,
>
> I've implemented the changes I indicated earlier, and made them available in
> simplewiki rc1.03 <
http://simplewiki.org/download>.