Last modified: 2011-04-30 01:16:48 UTC
Created attachment 5905 [details] screen snapshots of the web page, in the bottom of the page the nested words Randomly the apache log throw the error PHP Notice: Uninitialized string offset: 0 in ../includes/parser/Parser.php on line 2181 Looking the code and after various test I found that sometimes the $t variables is not an array so, I changed from ' ' == $t{0} into ' '== substr($t,0) and seems not throw any error
If $t = '', this will happen, because the index 0 doesn't exist. Fixed in r48311.