Skip to content

Commit

Permalink
add link to home in catch-all route
Browse files Browse the repository at this point in the history
  • Loading branch information
davemenninger committed Nov 19, 2014
1 parent 754f3fd commit ca39e9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Readme.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This is an example Mojolicious app. Its goals are:
* ~~move authentication routes into own controller~~
* ~~create login page ( post )~~
* ~~connect authentication to external database ( mongo )~~
* wait for November 18th, 2014 for mongolab to upgrade default version to 2.6, argh!
* ~~wait for November 18th, 2014 for mongolab to upgrade default version to 2.6, argh!~~
* fix travis hack after travis upgrades default mongodb version to 2.6
* ~~register new user~~
* ~~prevent register dupe username~~
Expand Down
2 changes: 1 addition & 1 deletion lib/Lrrr.pm
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ sub startup {
'/*whatever' => {whatever => ''} => sub {
my $c = shift;
my $whatever = $c->param('whatever');
$c->render(text => "/$whatever did not match.", status => 404);
$c->render(text => "/$whatever did not match and route. go <a href=\"/\" >home</a>.", status => 404);
}
);

Expand Down

0 comments on commit ca39e9d

Please sign in to comment.