Skip to content

Commit 7b81ce6

Browse files
committed
bug #6503 Fix typo in from flat PHP to Symfony (gregfriedrice, WouterJ)
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
2 parents 3f7e9c1 + a712e6b commit 7b81ce6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

book/from_flat_php_to_symfony2.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ is primarily an HTML file that uses a template-like PHP syntax:
113113
<ul>
114114
<?php foreach ($posts as $post): ?>
115115
<li>
116-
<a href="/read?id=<?php echo $post['id'] ?>">
116+
<a href="/show.php?id=<?php echo $post['id'] ?>">
117117
<?php echo $post['title'] ?>
118118
</a>
119119
</li>
@@ -224,7 +224,7 @@ the layout:
224224
<ul>
225225
<?php foreach ($posts as $post): ?>
226226
<li>
227-
<a href="/read?id=<?php echo $post['id'] ?>">
227+
<a href="/show.php?id=<?php echo $post['id'] ?>">
228228
<?php echo $post['title'] ?>
229229
</a>
230230
</li>

0 commit comments

Comments
 (0)