2005-10-09 01:56:21 +00:00
|
|
|
<?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.layouts
|
|
|
|
* @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
|
|
|
|
*/
|
|
|
|
?>
|
2005-06-30 02:32:36 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="pl" xml:lang="pl">
|
|
|
|
<head>
|
2005-09-17 02:22:07 +00:00
|
|
|
<title><?php echo $page_title?></title>
|
2005-06-30 02:32:36 +00:00
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
2005-08-22 04:15:57 +00:00
|
|
|
<?php if(DEBUG == 0) { ?>
|
2005-09-17 02:22:07 +00:00
|
|
|
<meta http-equiv="Refresh" content="<?php echo $pause?>;url=<?php echo $url?>" />
|
2005-08-22 04:15:57 +00:00
|
|
|
<?php } ?>
|
2005-06-30 02:32:36 +00:00
|
|
|
<style><!--
|
|
|
|
P { text-align:center; font:bold 1.1em sans-serif }
|
|
|
|
A { color:#444; text-decoration:none }
|
|
|
|
A:HOVER { text-decoration: underline; color:#44E }
|
|
|
|
--></style>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
2005-09-17 02:22:07 +00:00
|
|
|
<p><a href="<?php echo $url?>"><?php echo $message?></a></p>
|
2005-06-30 02:32:36 +00:00
|
|
|
|
|
|
|
</body>
|
2005-09-17 02:22:07 +00:00
|
|
|
</html>
|