From b3f0a052b29f3481f49c5273d2fe36f0a3ae5590 Mon Sep 17 00:00:00 2001 From: donal72 Date: Fri, 19 Oct 2007 00:43:33 +0000 Subject: [PATCH] Enable access to Mahara from testclient.php --- mnet/testclient.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mnet/testclient.php b/mnet/testclient.php index 4816e1f7bb..8349e8d959 100644 --- a/mnet/testclient.php +++ b/mnet/testclient.php @@ -35,8 +35,8 @@ foreach ($hosts as $id => $host) { if(empty($host->wwwroot)) continue; // Skip localhost if($host->wwwroot == $CFG->wwwroot) continue; - // Skip non-moodle hosts - if($host->applicationid != 1) continue; + // Skip non-moodle non-mahara hosts + if($host->applicationid != 1 && $host->applicationid != 2) continue; //TODO: get rid of magic numbers. echo '

'.$host->wwwroot."

\n"; } -- 2.39.5