Quote:
Originally Posted by kube
Go into modules/XC_SEO/outputfilter.seo.php and find the function _insert_href_title()
right below it inside the function, find the line...
if((strpos(" title=",$found)===false)){
and change to this...
if((eregi("title=",$found)===false)){
|
I don't think that it is good idea because any regular expressions works very slowly than strpos. Therefore more better solution is change strpos( ' title=', $found) to strpos($found, ' title=')
crossposted in
http://forum.x-cart.com/showthread.php?p=218937#post218937