Advertisement
oscarholmedo

Joomla 3 Use language label as title

Aug 12th, 2013
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. //Set language label as title
  2. // libraries/joomla/document/html/renderer/head.php
  3. // line 115
  4.  
  5. $buffer .= $tab . '<title>' . htmlspecialchars($document->getTitle(), ENT_COMPAT, 'UTF-8') . '</title>' . $lnEnd;
  6. //change into this
  7. $buffer .= $tab . '<title>' . JTEXT::_(htmlspecialchars($document->getTitle(), ENT_COMPAT, 'UTF-8')) . '</title>' . $lnEnd;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement