MDL-17001 "Moving admin/report/simpletest to directory unittest" changing some references to old simpletest directory name.

This commit is contained in:
jamiesensei 2008-10-24 15:13:08 +00:00
parent 368f375370
commit ef09fadc44
2 changed files with 3 additions and 3 deletions

View File

@ -47,7 +47,7 @@ if ($testtablesok) {
print_heading(get_string('testtablesok', 'simpletest'));
}
$baseurl = $CFG->wwwroot . '/admin/report/simpletest/index.php';
$baseurl = $CFG->wwwroot . '/admin/report/unittest/index.php';
// Add unittest prefix to config.php if needed
if ($addconfigprefix && !isset($CFG->unittestprefix)) {

View File

@ -1,6 +1,6 @@
<?php //$Id$
if ($hassiteconfig) {
$ADMIN->add('development', new admin_externalpage('reportsimpletest', get_string('simpletest', 'admin'), "$CFG->wwwroot/$CFG->admin/report/simpletest/index.php",'moodle/site:config'));
$ADMIN->add('development', new admin_externalpage('reportdbtest', get_string('dbtest', 'admin'), "$CFG->wwwroot/$CFG->admin/report/simpletest/dbtest.php",'moodle/site:config'));
$ADMIN->add('development', new admin_externalpage('reportsimpletest', get_string('simpletest', 'admin'), "$CFG->wwwroot/$CFG->admin/report/unittest/index.php",'moodle/site:config'));
$ADMIN->add('development', new admin_externalpage('reportdbtest', get_string('dbtest', 'admin'), "$CFG->wwwroot/$CFG->admin/report/unittest/dbtest.php",'moodle/site:config'));
}
?>