Zen 1.5.4
shouldn't it beCode:public $callback_search = array( '/<(a) [^>]*href=("|\')([^"\']+)\2([^>]*)>(.*?)<\/a>/i', // <a href=""> '/<(h)[123456]( [^>]*)?>(.*?)<\/h[123456]>/i', // h1 - h6 '/<(b)( [^>]*)?>(.*?)<\/b>/i', // <b> '/<(strong)( [^>]*)?>(.*?)<\/strong>/i', // <strong> '/<(th)( [^>]*)?>(.*?)<\/th>/i', // <th> and </th> );
Bunch of validation issues as well with regard to the script tags and their location. I suspect that the script tag location problem for jquery is because the head/html are not correctly closedCode:public $callback_search = array( '/<(a) [^>]*href=("|\')([^"\']+)\2([^>]*)>(.*?)<\/a>/i', // <a href=""> '/<(h)[123456]( [^>]*)(.*?)<\/h[123456]>/i', // h1 - h6 '/<(b)( [^>]*)(.*?)<\/b>/i', // <b> '/<(strong)( [^>]*)(.*?)<\/strong>/i', // <strong> '/<(th)( [^>]*)(.*?)<\/th>/i', // <th> and </th> );
But the tags all have no type in any case.
~Melanie





