Subject: | there is a problem if you write <> i... |
Summary: | Package rating comment |
Messages: | 2 |
Author: | moh roubla |
Date: | 2012-06-21 11:56:37 |
|
|
|
moh roubla rated this package as follows:
Utility: | Sufficient |
Consistency: | Not sure |
Documentation: | Not sure |
Examples: | Good |
|
moh roubla - 2012-06-21 11:56:37
there is a problem if you write <>
i think that the good solution is to search for <> in the string and replace it with < >
Daniel San - 2014-10-07 19:40:16 - In reply to message 1 from moh roubla
Greetings,
I just found the same problem. I changed line 98 from:
$postTag = substr($postTag, $tagOpen_start);
to:
$postTag = substr($postTag, $tagOpen_start + 1);
And I think that solved it.
Regards,
Daniel
|