Skip to content

Commit

Permalink
bug #6503 Fix typo in from flat PHP to Symfony (gregfriedrice, WouterJ)
Browse files Browse the repository at this point in the history
This PR was merged into the 2.3 branch.

Discussion
----------

Fix typo in from flat PHP to Symfony

Rebases #6500

Commits
-------

a712e6b Fix one more occurence of /read
9231389 Fix typo
  • Loading branch information
wouterj committed Apr 20, 2016
2 parents 3f7e9c1 + a712e6b commit 7b81ce6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions book/from_flat_php_to_symfony2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ is primarily an HTML file that uses a template-like PHP syntax:
<ul>
<?php foreach ($posts as $post): ?>
<li>
<a href="/read?id=<?php echo $post['id'] ?>">
<a href="/show.php?id=<?php echo $post['id'] ?>">
<?php echo $post['title'] ?>
</a>
</li>
Expand Down Expand Up @@ -224,7 +224,7 @@ the layout:
<ul>
<?php foreach ($posts as $post): ?>
<li>
<a href="/read?id=<?php echo $post['id'] ?>">
<a href="/show.php?id=<?php echo $post['id'] ?>">
<?php echo $post['title'] ?>
</a>
</li>
Expand Down

0 comments on commit 7b81ce6

Please sign in to comment.