mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
Merge branch '1.3-configure' into 1.3
This commit is contained in:
commit
8f801a975d
5 changed files with 7 additions and 7 deletions
|
@ -251,7 +251,7 @@ class I18n extends Object {
|
|||
$this->__noLocale = true;
|
||||
$core = true;
|
||||
$merge = array();
|
||||
$searchPaths = App::path('locales');;
|
||||
$searchPaths = App::path('locales');
|
||||
$plugins = App::objects('plugin');
|
||||
|
||||
if (!empty($plugins)) {
|
||||
|
|
|
@ -954,7 +954,7 @@ class DispatcherTest extends CakeTestCase {
|
|||
$expectedWebroot = '/';
|
||||
$this->assertEqual($expectedWebroot, $Dispatcher->webroot);
|
||||
|
||||
$Dispatcher->base = false;;
|
||||
$Dispatcher->base = false;
|
||||
$_SERVER['DOCUMENT_ROOT'] = '/some/apps/where';
|
||||
$_SERVER['SCRIPT_FILENAME'] = '/some/apps/where/app/webroot/index.php';
|
||||
$_SERVER['PHP_SELF'] = '/some/apps/where/app/webroot/index.php';
|
||||
|
@ -967,7 +967,7 @@ class DispatcherTest extends CakeTestCase {
|
|||
|
||||
Configure::write('App.dir', 'auth');
|
||||
|
||||
$Dispatcher->base = false;;
|
||||
$Dispatcher->base = false;
|
||||
$_SERVER['DOCUMENT_ROOT'] = '/cake/repo/branches';
|
||||
$_SERVER['SCRIPT_FILENAME'] = '/cake/repo/branches/demos/auth/webroot/index.php';
|
||||
$_SERVER['PHP_SELF'] = '/demos/auth/webroot/index.php';
|
||||
|
@ -980,7 +980,7 @@ class DispatcherTest extends CakeTestCase {
|
|||
|
||||
Configure::write('App.dir', 'code');
|
||||
|
||||
$Dispatcher->base = false;;
|
||||
$Dispatcher->base = false;
|
||||
$_SERVER['DOCUMENT_ROOT'] = '/Library/WebServer/Documents';
|
||||
$_SERVER['SCRIPT_FILENAME'] = '/Library/WebServer/Documents/clients/PewterReport/code/webroot/index.php';
|
||||
$_SERVER['PHP_SELF'] = '/clients/PewterReport/code/webroot/index.php';
|
||||
|
|
|
@ -995,7 +995,7 @@ class ControllerTest extends CakeTestCase {
|
|||
'home'
|
||||
);
|
||||
$result = $Controller->referer($referer, false);
|
||||
$expected = 'http://' . env('HTTP_HOST') . '/pages/display/home';;
|
||||
$expected = 'http://' . env('HTTP_HOST') . '/pages/display/home';
|
||||
$this->assertIdentical($result, $expected);
|
||||
|
||||
$_SERVER['HTTP_REFERER'] = '';
|
||||
|
|
|
@ -39,7 +39,7 @@ class I18nTest extends CakeTestCase {
|
|||
* @return void
|
||||
*/
|
||||
function setUp() {
|
||||
$this->_localePaths = App::path('locales');;
|
||||
$this->_localePaths = App::path('locales');
|
||||
App::build(array(
|
||||
'locales' => array(TEST_CAKE_CORE_INCLUDE_PATH . 'tests' . DS . 'test_app' . DS . 'locale')
|
||||
));
|
||||
|
|
|
@ -229,7 +229,7 @@ class CodeCoverageManager {
|
|||
} else {
|
||||
$class = 'ignored';
|
||||
}
|
||||
$report .= $manager->__paintCodeline($class, $num, $line);;
|
||||
$report .= $manager->__paintCodeline($class, $num, $line);
|
||||
}
|
||||
return $manager->__paintHeader($lineCount, $coveredCount, $report);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue