
 Ronald Verdonk - 2013-11-26 10:49:07
 
Approx. line 115 statement reads:
	if($textCounter > strlen ('5TEG0'.$text.'5TEG0'))return $im;
should be:
	if($textCounter >= strlen ('5TEG0'.$text.'5TEG0'))return $im;
because length is always 1 higher than the index.
Ronald