mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-19 02:56:15 +00:00
Revert part of the changes in 1ede742d92
These variables are used by the HTML test reporter.
This commit is contained in:
parent
0502e0731a
commit
17c3358d77
1 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ class CakeHtmlReporter extends CakeBaseReporter {
|
|||
*/
|
||||
public function paintDocumentStart() {
|
||||
ob_start();
|
||||
$this->params['baseDir'];
|
||||
$baseDir = $this->params['baseDir'];
|
||||
include CAKE . 'TestSuite' . DS . 'templates' . DS . 'header.php';
|
||||
}
|
||||
|
||||
|
@ -69,7 +69,7 @@ class CakeHtmlReporter extends CakeBaseReporter {
|
|||
* @return void
|
||||
*/
|
||||
public function paintTestMenu() {
|
||||
$this->baseUrl() . '?show=cases';
|
||||
$cases = $this->baseUrl() . '?show=cases';
|
||||
$plugins = App::objects('plugin', null, false);
|
||||
sort($plugins);
|
||||
include CAKE . 'TestSuite' . DS . 'templates' . DS . 'menu.php';
|
||||
|
|
Loading…
Add table
Reference in a new issue