File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ file:
293
293
'twig' => array(
294
294
'functions' => array(
295
295
'jpegoptim' => array(
296
- 'output' => 'images/*.jpg'
296
+ 'output' => 'images/*.jpg',
297
297
),
298
298
),
299
299
),
Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ zero tags when first created).
231
231
232
232
<h3>Tags</h3>
233
233
<ul class="tags">
234
- <?php foreach($form['tags'] as $tag): ?>
234
+ <?php foreach ($form['tags'] as $tag): ?>
235
235
<li><?php echo $view['form']->row($tag['name']) ?></li>
236
236
<?php endforeach ?>
237
237
</ul>
Original file line number Diff line number Diff line change @@ -723,7 +723,7 @@ correctly:
723
723
.. code-block :: html+php
724
724
725
725
<!-- app/Resources/views/Article/recent_list.html.php -->
726
- <?php foreach ($articles in $article): ?>
726
+ <?php foreach ($articles as $article): ?>
727
727
<a href="<?php echo $view['router']->generate('article_show', array(
728
728
'slug' => $article->getSlug(),
729
729
)) ?>">
You can’t perform that action at this time.
0 commit comments