Skip to content

Commit

Permalink
Forcing the plugin list to use a fresh directory listing in the web r…
Browse files Browse the repository at this point in the history
…unner. Fixes #1338
  • Loading branch information
markstory committed Dec 7, 2010
1 parent 7024d14 commit 8681399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake/tests/lib/reporter/cake_html_reporter.php
Expand Up @@ -74,7 +74,7 @@ function paintDocumentStart() {
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';
}
Expand Down

0 comments on commit 8681399

Please sign in to comment.