From 76ce0f345ffef1c58b03f012b22cfb5c58ca5992 Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Fri, 17 Sep 2010 12:26:05 +0000 Subject: [PATCH] fixed wrong continue --- enrol/meta/locallib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enrol/meta/locallib.php b/enrol/meta/locallib.php index b09aa8eee43..9599bb192f5 100644 --- a/enrol/meta/locallib.php +++ b/enrol/meta/locallib.php @@ -60,7 +60,7 @@ class enrol_meta_handler { $plugin = enrol_get_plugin('meta'); if ($disabled = $plugin->get_config('nosyncroleids')) { if (in_array($ra->roleid, explode(',', $disabled))) { - continue; + return true; } }