mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-22 14:57:20 +00:00
Use HTTPS for the www.cakephp.org URL
Do not change those in tests.
This commit is contained in:
parent
deee18c96e
commit
88aadf3804
7 changed files with 9 additions and 9 deletions
|
@ -49,7 +49,7 @@ $cakeVersion = __d('cake_dev', 'CakePHP %s', Configure::version())
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<?php echo $this->Html->link(
|
<?php echo $this->Html->link(
|
||||||
$this->Html->image('cake.power.gif', array('alt' => $cakeDescription, 'border' => '0')),
|
$this->Html->image('cake.power.gif', array('alt' => $cakeDescription, 'border' => '0')),
|
||||||
'http://www.cakephp.org/',
|
'https://cakephp.org/',
|
||||||
array('target' => '_blank', 'escape' => false, 'id' => 'cake-powered')
|
array('target' => '_blank', 'escape' => false, 'id' => 'cake-powered')
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -48,7 +48,7 @@ $cakeDescription = __d('cake_dev', 'CakePHP: the rapid development php framework
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<?php echo $this->Html->link(
|
<?php echo $this->Html->link(
|
||||||
$this->Html->image('cake.power.gif', array('alt' => $cakeDescription, 'border' => '0')),
|
$this->Html->image('cake.power.gif', array('alt' => $cakeDescription, 'border' => '0')),
|
||||||
'http://www.cakephp.org/',
|
'https://cakephp.org/',
|
||||||
array('target' => '_blank', 'escape' => false)
|
array('target' => '_blank', 'escape' => false)
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -39,7 +39,7 @@ $cakeDescription = __d('cake_dev', 'CakePHP: the rapid development php framework
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<?php echo $this->Html->link(
|
<?php echo $this->Html->link(
|
||||||
$this->Html->image('cake.power.gif', array('alt' => $cakeDescription, 'border' => '0')),
|
$this->Html->image('cake.power.gif', array('alt' => $cakeDescription, 'border' => '0')),
|
||||||
'http://www.cakephp.org/',
|
'https://cakephp.org/',
|
||||||
array('target' => '_blank', 'escape' => false)
|
array('target' => '_blank', 'escape' => false)
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -39,7 +39,7 @@ $cakeDescription = __d('cake_dev', 'CakePHP: the rapid development php framework
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<?php echo $this->Html->link(
|
<?php echo $this->Html->link(
|
||||||
$this->Html->image('cake.power.gif', array('alt' => $cakeDescription, 'border' => '0')),
|
$this->Html->image('cake.power.gif', array('alt' => $cakeDescription, 'border' => '0')),
|
||||||
'http://www.cakephp.org/',
|
'https://cakephp.org/',
|
||||||
array('target' => '_blank', 'escape' => false)
|
array('target' => '_blank', 'escape' => false)
|
||||||
);
|
);
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -1260,7 +1260,7 @@ class CakeResponse {
|
||||||
* This method allow multiple ways to setup the domains, see the examples
|
* This method allow multiple ways to setup the domains, see the examples
|
||||||
*
|
*
|
||||||
* ### Full URI
|
* ### Full URI
|
||||||
* e.g `cors($request, 'http://www.cakephp.org');`
|
* e.g `cors($request, 'https://www.cakephp.org');`
|
||||||
*
|
*
|
||||||
* ### URI with wildcard
|
* ### URI with wildcard
|
||||||
* e.g `cors($request, 'http://*.cakephp.org');`
|
* e.g `cors($request, 'http://*.cakephp.org');`
|
||||||
|
@ -1272,7 +1272,7 @@ class CakeResponse {
|
||||||
* e.g `cors($request, '*');`
|
* e.g `cors($request, '*');`
|
||||||
*
|
*
|
||||||
* ### Whitelist of URIs
|
* ### Whitelist of URIs
|
||||||
* e.g `cors($request, array('http://www.cakephp.org', '*.google.com', 'https://myproject.github.io'));`
|
* e.g `cors($request, array('https://www.cakephp.org', '*.google.com', 'https://myproject.github.io'));`
|
||||||
*
|
*
|
||||||
* @param CakeRequest $request Request object
|
* @param CakeRequest $request Request object
|
||||||
* @param string|array $allowedDomains List of allowed domains, see method description for more details
|
* @param string|array $allowedDomains List of allowed domains, see method description for more details
|
||||||
|
|
|
@ -564,11 +564,11 @@ class HttpSocket extends CakeSocket {
|
||||||
* URLs.
|
* URLs.
|
||||||
*
|
*
|
||||||
* ```
|
* ```
|
||||||
* $http = new HttpSocket('http://www.cakephp.org');
|
* $http = new HttpSocket('https://www.cakephp.org');
|
||||||
* $url = $http->url('/search?q=bar');
|
* $url = $http->url('/search?q=bar');
|
||||||
* ```
|
* ```
|
||||||
*
|
*
|
||||||
* Would return `http://www.cakephp.org/search?q=bar`
|
* Would return `https://cakephp.org/search?q=bar`
|
||||||
*
|
*
|
||||||
* url() can also be used with custom templates:
|
* url() can also be used with custom templates:
|
||||||
*
|
*
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
<div id="footer">
|
<div id="footer">
|
||||||
<p>
|
<p>
|
||||||
<!--PLEASE USE ONE OF THE POWERED BY CAKEPHP LOGO-->
|
<!--PLEASE USE ONE OF THE POWERED BY CAKEPHP LOGO-->
|
||||||
<a href="http://www.cakephp.org/" target="_blank">
|
<a href="https://cakephp.org/" target="_blank">
|
||||||
<img src="<?php echo $baseDir; ?>img/cake.power.gif" alt="CakePHP(tm) :: Rapid Development Framework" /></a>
|
<img src="<?php echo $baseDir; ?>img/cake.power.gif" alt="CakePHP(tm) :: Rapid Development Framework" /></a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue