Details
-
Type:
Docs: Problem
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.5.0
-
Fix Version/s: 1.5.1
-
Component/s: Zend_Layout
-
Labels:None
-
Language:English
Description
In the second example in http://framework.zend.com/manual/en/zend.layout.quickstart.html#zend.layout.quickstart.layouts
There is a <title><?= $this->headTitle() ?></title> and it creates double <title>.
Here is a diff:
Index: I:/xampp/php/PEAR/Zend15/documentation/manual/en/module_specs/Zend_Layout-QuickStart.xml =================================================================== --- I:/xampp/php/PEAR/Zend15/documentation/manual/en/module_specs/Zend_Layout-QuickStart.xml (revision 8831) +++ I:/xampp/php/PEAR/Zend15/documentation/manual/en/module_specs/Zend_Layout-QuickStart.xml (working copy) @@ -66,7 +66,7 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> - <title><?= $this->headTitle() ?></title> + <?= $this->headTitle() ?> <?= $this->headScript() ?> <?= $this->headStyle() ?> </head>
Fixed with SVN-8842