Changeset 7591
- Timestamp:
- 02/23/08 21:13:50 (9 months ago)
- Files:
-
- doc/branches/1.0/tutorial/my-first-project.txt (modified) (1 diff)
- doc/branches/1.1/tutorial/my-first-project.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
doc/branches/1.0/tutorial/my-first-project.txt
r7560 r7591 484 484 <td><?php echo $post->getTitle() ?></td> 485 485 486 To :487 488 [php] 489 <td><?php echo link_to($post->getTitle(), ' post/permalink?title='.$post->getStrippedTitle()) ?></td>486 To a link using a named rule we will create in a second: 487 488 [php] 489 <td><?php echo link_to($post->getTitle(), '@post?title='.$post->getStrippedTitle()) ?></td> 490 490 491 491 Just one more step: Edit the `routing.yml` located in the `sf_sandbox/apps/frontend/config/` directory and add these rules doc/branches/1.1/tutorial/my-first-project.txt
r7560 r7591 552 552 <td><?php echo $post->getTitle() ?></td> 553 553 554 To :555 556 [php] 557 <td><?php echo link_to($post->getTitle(), ' post/permalink?title='.$post->getStrippedTitle()) ?></td>554 To a link using a named rule we will create in a second: 555 556 [php] 557 <td><?php echo link_to($post->getTitle(), '@post?title='.$post->getStrippedTitle()) ?></td> 558 558 559 559 Just one more step: Edit the `routing.yml` located in the