mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Beginning to port fixes to 1.2.x.x code from 1.1.x.x
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@3269 3807eeeb-6ff5-0310-8944-8be069107fe0
This commit is contained in:
parent
6d71310f00
commit
6dc000f826
2 changed files with 2 additions and 2 deletions
|
@ -30,7 +30,7 @@
|
|||
?>
|
||||
<h1>Missing Component File</h1>
|
||||
|
||||
<p class="error">You are seeing this error because the component file <em><?php echo "app".DS."controllers".DS."components".DS.r('_component', '', $file); ?></em>
|
||||
<p class="error">You are seeing this error because the component file <em><?php echo "app".DS."controllers".DS."components".DS.$file; ?></em>
|
||||
can't be found or doesn't exist.
|
||||
</p>
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>CakePHP : <?php echo $title_for_layout;?></title>
|
||||
<link rel="shortcut icon" href="<?php echo $html->url('/favicon.ico')?>" type="image/x-icon" />
|
||||
<link rel="shortcut icon" href="<?php echo $this->webroot . 'favicon.ico';?>" type="image/x-icon" />
|
||||
<?php echo $html->css('cake.generic');?>
|
||||
</head>
|
||||
<body>
|
||||
|
|
Loading…
Add table
Reference in a new issue