Merge pull request #1351 from everclear/patch-1

link_to_route requires 3 parameters if wildcard values are required
This commit is contained in:
Jason Lewis 2012-10-20 07:30:27 -07:00
commit e842095fa7
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ #### Generating a link to a named route:
#### Generating a link to a named route with wildcard values:
$url = HTML::link_to_route('profile', array($username));
$url = HTML::link_to_route('profile', 'User Profile', array($username));
*Further Reading:*