Skip to content

Commit

Permalink
Fix link to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
gmansilla committed Aug 28, 2014
1 parent 3e3ea71 commit 2c46706
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tests/test_app/TestApp/Template/Pages/home.ctp
Expand Up @@ -19,8 +19,8 @@ endif;
<?php if (file_exists(WWW_ROOT . 'css' . DS . 'cake.generic.css')): ?>
<p id="url-rewriting-warning" style="background-color:#e32; color:#fff;">
URL rewriting is not properly configured on your server.
1) <a target="_blank" href="http://book.cakephp.org/2.0/en/installation/url-rewriting.html" style="color:#fff;">Help me configure it</a>
2) <a target="_blank" href="http://book.cakephp.org/2.0/en/development/configuration.html#cakephp-core-configuration" style="color:#fff;">I don't / can't use URL rewriting</a>
1) <a target="_blank" href="http://book.cakephp.org/3.0/en/installation/url-rewriting.html" style="color:#fff;">Help me configure it</a>
2) <a target="_blank" href="http://book.cakephp.org/3.0/en/development/configuration.html#core-configuration-baseurl" style="color:#fff;">I don't / can't use URL rewriting</a>
</p>
<?php endif; ?>

Expand Down Expand Up @@ -103,8 +103,8 @@ You can also add some CSS styles for your pages at: APP/webroot/css.;
<p>
<?php
echo $this->Html->link(
'<strong>New</strong> CakePHP 2.0 Docs',
'http://book.cakephp.org/2.0/en/',
'<strong>New</strong> CakePHP 3.0 Docs',
'http://book.cakephp.org/3.0/en/',
array('target' => '_blank', 'escape' => false)
);
?>
Expand All @@ -113,7 +113,7 @@ You can also add some CSS styles for your pages at: APP/webroot/css.;
<?php
echo $this->Html->link(
'The 15 min Blog Tutorial',
'http://book.cakephp.org/2.0/en/tutorials-and-examples/blog/blog.html',
'http://book.cakephp.org/3.0/en/getting-started.html#blog-tutorial',
array('target' => '_blank', 'escape' => false)
);
?>
Expand Down

0 comments on commit 2c46706

Please sign in to comment.