Closed GoogleCodeExporter closed 9 years ago
search examples:
c l a*
l a*
c l
Original comment by readwr...@gmail.com
on 28 Sep 2009 at 12:59
0.
characters '†' and '‡' were chosen arbitrarily
00.
but they can be found in terms or definitions
so i suggest something else (hexadecimal caracters x00 and x01)
000.
replace
$strong_start = '†';
$strong_end = '‡';
by
$strong_start = '\x00';
$strong_end = '\x01';
0000.
and replace
$t = str_replace("†", '<strong class="'.$classname.'">', $t);
$t = str_replace("‡", '</strong>', $t);
by
$t = str_replace($strong_start, '<strong class="'.$classname.'">', $t);
$t = str_replace($strong_end, '</strong>', $t);
Original comment by readwr...@gmail.com
on 10 Oct 2009 at 10:48
Thank you for solving the issue.
Original comment by dmitry.s...@gmail.com
on 18 Feb 2010 at 9:05
Attachments:
Original issue reported on code.google.com by
readwr...@gmail.com
on 28 Sep 2009 at 12:45