Browse Source

Fix bugs in fortune test

Hamilton Turner 10 years ago
parent
commit
ace6b059e9

+ 0 - 1
frameworks/PHP/php-symfony2-stripped/app/Resources/views/base.html.php

@@ -1,7 +1,6 @@
 <!DOCTYPE html>
 <html>
     <head>
-        <meta charset="UTF-8" />
         <title><?php $view['slots']->output('title') ?></title>
         <?php $view['slots']->output('stylesheets') ?>
     </head>

+ 1 - 3
frameworks/PHP/php-symfony2-stripped/src/Skamander/BenchmarkBundle/Resources/views/Bench/raw/content.php

@@ -1,7 +1,5 @@
 <?php include 'template_header.php'; ?>
 
-<div class="block">
-    <?php include 'fortunes.php'; ?>
-</div>
+<?php include 'fortunes.php'; ?>
 
 <?php include 'template_footer.php'; ?>

+ 1 - 3
frameworks/PHP/php-symfony2-stripped/src/Skamander/BenchmarkBundle/Resources/views/layout.html.php

@@ -3,7 +3,5 @@
 <?php $view['slots']->set('title', 'Benchmark Bundle') ?>
 
 <?php $view['slots']->start('body') ?>
-    <div class="block">
-        <?php $view['slots']->output('content') ?>
-    </div>
+  <?php $view['slots']->output('content') ?>
 <?php $view['slots']->stop() ?>