소스 검색

[WebProfilerBundle] updated two references to the bag template to the new style by adding a .php extension to them

Alex 14 년 전
부모
커밋
568cd57da6
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/request_panel.php

+ 2 - 2
src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/request_panel.php

@@ -1,7 +1,7 @@
 <h2>Request GET Parameters</h2>
 
 <?php if (count($data->getRequestQuery()->all())): ?>
-    <?php echo $view->render('WebProfilerBundle:Profiler:bag', array('bag' => $data->getRequestQuery())) ?>
+    <?php echo $view->render('WebProfilerBundle:Profiler:bag.php', array('bag' => $data->getRequestQuery())) ?>
 <?php else: ?>
     <em>No GET parameters</em>
 <?php endif; ?>
@@ -9,7 +9,7 @@
 <h2>Request POST Parameters</h2>
 
 <?php if (count($data->getRequestRequest()->all())): ?>
-    <?php echo $view->render('WebProfilerBundle:Profiler:bag', array('bag' => $data->getRequestRequest())) ?>
+    <?php echo $view->render('WebProfilerBundle:Profiler:bag.php', array('bag' => $data->getRequestRequest())) ?>
 <?php else: ?>
     <em>No POST parameters</em>
 <?php endif; ?>