#5785: title tag should be after the charset tag.
----------------------------+-----------------------------------------------
    Reporter:  tchisaka     |          Type:  Bug   
      Status:  new          |      Priority:  Medium
   Milestone:               |     Component:  View  
     Version:  1.1 Stable   |      Severity:  Normal
    Keywords:  flash.thtml  |   Php_version:  n/a   
Cake_version:               |  
----------------------------+-----------------------------------------------
 About the file "flash.thtml".[[BR]]
 The order of the charset tag and the title tag was already fixed for
 ver.1.2 at https://trac.cakephp.org/ticket/5107 . But there is the same
 problem still in CakePHP ver.1.1.[[BR]][[BR]]
 now (ver.1.1.20.7692):[[BR]]
 If you generate non-English strings for the title, Internet Explorer can
 not display correctly.
 {{{
 <title><?php echo $page_title; ?></title>
 <?php echo $html->charset(); ?>
 }}}
 fixed:
 {{{
 <?php echo $html->charset(); ?>
 <title><?php echo $page_title; ?></title>
 }}}

-- 
Ticket URL: <https://trac.cakephp.org/ticket/5785>
CakePHP : The Rapid Development Framework for PHP <https://trac.cakephp.org/>
Cake is a rapid development framework for PHP which uses commonly known design 
patterns like ActiveRecord, Association Data Mapping, Front Controller and MVC. 
Our primary goal is to provide a structured framework that enables PHP users at 
all levels to rapidly develop robust web applications, without any loss to 
flexibility.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"tickets cakephp" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/tickets-cakephp?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to