View Single Post
  #3  
Old 08-16-2012, 03:46 PM
 
NuAlpha NuAlpha is offline
 

X-Adept
  
Join Date: Aug 2003
Location: US
Posts: 598
 

Default Re: Where is the TITLE tag?

Quote:
Originally Posted by qualiteam
The Title is defined via the Smarty plugin. Please check the -> "include/templater/plugins/function.get_title.php" script.

Thanks!

All I needed to do was change the line:
$title = @htmlspecialchars($title, ENT_QUOTES, $charset);

To be:
$title = @htmlspecialchars($title, ENT_QUOTES, $charset, false);

Why is double encoding the default behavior?
__________________
X-Cart Pro 4.5.5 Platinum
X-Payments 1.0.6
PHP 5.3.14
MySQL 5.1.68
Apache 2.2.23
Reply With Quote