From 8681399fc29443281107a0788e65056f44e72598 Mon Sep 17 00:00:00 2001 From: mark_story Date: Mon, 6 Dec 2010 21:29:11 -0500 Subject: [PATCH] Forcing the plugin list to use a fresh directory listing in the web runner. Fixes #1338 --- cake/tests/lib/reporter/cake_html_reporter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cake/tests/lib/reporter/cake_html_reporter.php b/cake/tests/lib/reporter/cake_html_reporter.php index 7074b844a..b1ef7ac9f 100755 --- a/cake/tests/lib/reporter/cake_html_reporter.php +++ b/cake/tests/lib/reporter/cake_html_reporter.php @@ -74,7 +74,7 @@ class CakeHtmlReporter extends CakeBaseReporter { function paintTestMenu() { $groups = $this->baseUrl() . '?show=groups'; $cases = $this->baseUrl() . '?show=cases'; - $plugins = App::objects('plugin'); + $plugins = App::objects('plugin', null, false); sort($plugins); include CAKE_TESTS_LIB . 'templates' . DS . 'menu.php'; }