Remove usage of raw() view helper in layout
authorEvan Coury <me@evancoury.com>
Wed, 29 Feb 2012 14:32:26 +0000 (07:32 -0700)
committerEvan Coury <me@evancoury.com>
Wed, 29 Feb 2012 14:32:26 +0000 (07:32 -0700)
module/Application/view/layout/layout.phtml

index 4d3c4e6..1831fbb 100644 (file)
@@ -25,7 +25,7 @@ echo $this->doctype();
     <meta charset="utf-8">
     <?php echo $this->headTitle('ZF2 Skeleton Application') ?>
 
-    <?php echo $this->headMeta()->appendName('viewport', 'width=device-width, initial-scale=1.0') ?>
+    <?php echo $this->headMeta() ?>
 
     <!-- Le styles -->
     <?php echo $this->headLink() ?>
@@ -58,7 +58,7 @@ echo $this->doctype();
 
     <div class="container">
 
-      <?php echo $this->raw('content'); ?>
+      <?php echo $this->content; ?>
 
       <hr>