| 1 |
lars |
1 |
<?php
|
|
|
2 |
/* SVN FILE: $Id: error404.ctp 7945 2008-12-19 02:16:01Z gwoo $ */
|
|
|
3 |
/**
|
|
|
4 |
*
|
|
|
5 |
* PHP versions 4 and 5
|
|
|
6 |
*
|
|
|
7 |
* CakePHP(tm) : Rapid Development Framework (http://www.cakephp.org)
|
|
|
8 |
* Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
|
|
|
9 |
*
|
|
|
10 |
* Licensed under The MIT License
|
|
|
11 |
* Redistributions of files must retain the above copyright notice.
|
|
|
12 |
*
|
|
|
13 |
* @filesource
|
|
|
14 |
* @copyright Copyright 2005-2008, Cake Software Foundation, Inc. (http://www.cakefoundation.org)
|
|
|
15 |
* @link http://www.cakefoundation.org/projects/info/cakephp CakePHP(tm) Project
|
|
|
16 |
* @package cake
|
|
|
17 |
* @subpackage cake.cake.libs.view.templates.errors
|
|
|
18 |
* @since CakePHP(tm) v 0.10.0.1076
|
|
|
19 |
* @version $Revision: 7945 $
|
|
|
20 |
* @modifiedby $LastChangedBy: gwoo $
|
|
|
21 |
* @lastmodified $Date: 2008-12-18 18:16:01 -0800 (Thu, 18 Dec 2008) $
|
|
|
22 |
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
|
23 |
*/
|
|
|
24 |
?>
|
|
|
25 |
<h2><?php echo $name; ?></h2>
|
|
|
26 |
<p class="error">
|
|
|
27 |
<strong><?php __('Error'); ?>: </strong>
|
|
|
28 |
<?php echo sprintf(__("The requested address %s was not found on this server.", true), "<strong>'{$message}'</strong>")?>
|
|
|
29 |
</p>
|