PHP Classes

there is a problem if you write <> i think that the good sol...

Recommend this page to a friend!

      PHP Input Filter  >  All threads  >  there is a problem if you write <> i...  >  (Un) Subscribe thread alerts  
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

  1. there is a problem if you write <> i...   Reply   Report abuse  
Picture of moh roubla 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 < >

  2. Re: there is a problem if you write <> i...   Reply   Report abuse  
Picture of Daniel San 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