mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-16 03:48:24 +00:00
550c5e22e9
Author: phpnut Date: 3:20:08 AM, Friday, October 28, 2005 Message: Adding fix for Ticket #107 Revision: 1244 Author: phpnut Date: 2:18:00 AM, Friday, October 28, 2005 Message: Adding config setting to allow setting a admin path that can access admin methods only on a controller. Added ability to add objects to the session. Updated some scaffold templates. git-svn-id: https://svn.cakephp.org/repo/trunk/cake@1246 3807eeeb-6ff5-0310-8944-8be069107fe0
59 lines
No EOL
1.8 KiB
Text
59 lines
No EOL
1.8 KiB
Text
<?php
|
|
/* SVN FILE: $Id$ */
|
|
|
|
/**
|
|
*
|
|
*
|
|
*
|
|
*
|
|
* PHP versions 4 and 5
|
|
*
|
|
* CakePHP : Rapid Development Framework <http://www.cakephp.org/>
|
|
* Copyright (c) 2005, CakePHP Authors/Developers
|
|
*
|
|
* Author(s): Michal Tatarynowicz aka Pies <tatarynowicz@gmail.com>
|
|
* Larry E. Masters aka PhpNut <nut@phpnut.com>
|
|
* Kamil Dzielinski aka Brego <brego.dk@gmail.com>
|
|
*
|
|
* Licensed under The MIT License
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @filesource
|
|
* @author CakePHP Authors/Developers
|
|
* @copyright Copyright (c) 2005, CakePHP Authors/Developers
|
|
* @link https://trac.cakephp.org/wiki/Authors Authors/Developers
|
|
* @package cake
|
|
* @subpackage cake.cake.libs.view.templates.errors
|
|
* @since CakePHP v 0.10.0.1076
|
|
* @version $Revision$
|
|
* @modifiedby $LastChangedBy$
|
|
* @lastmodified $Date$
|
|
* @license http://www.opensource.org/licenses/mit-license.php The MIT License
|
|
*/
|
|
?>
|
|
<h1>Missing view</h1>
|
|
|
|
<p class="error">You are seeing this error because the view <em><?php echo $this->missingView;?></em>
|
|
for action <em><?php echo $this->params['action'];?></em>
|
|
in controller <em><?php echo Inflector::camelize($this->name);?></em> could not be found.
|
|
</p>
|
|
|
|
<p>
|
|
<span class="notice"><strong>Notice:</strong> this error is being rendered by the <code>app/views/errors/missing_view.thtml</code>
|
|
view file, a user-customizable error page for handling missing/invalid views during rendering.</span>
|
|
</p>
|
|
|
|
<p>
|
|
<strong>Fatal</strong>: Unable to load view file <em><?php echo $this->missingView;?></em> for
|
|
action <em><?php echo $this->missingView;?>::<?php echo $this->params['action'];?></em>
|
|
</p>
|
|
|
|
<?php if (DEBUG>1):?>
|
|
<h2>Controller dump:</h2>
|
|
<pre>
|
|
<?php
|
|
unset($this->db);
|
|
print_r($this);
|
|
?>
|
|
</pre>
|
|
<?endif?> |