From 5671e77f137e3ef457f3357c99a19598770982a4 Mon Sep 17 00:00:00 2001 From: skodak Date: Wed, 11 Apr 2007 13:01:14 +0000 Subject: [PATCH] MDL-9286 Incorrect setting of defaults for rpc_negotiation_timeout ; merged from MOODLE_18_STABLE --- auth/mnet/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/mnet/auth.php b/auth/mnet/auth.php index f8baa0758e..3359b55428 100644 --- a/auth/mnet/auth.php +++ b/auth/mnet/auth.php @@ -695,7 +695,7 @@ class auth_plugin_mnet extends auth_plugin_base { function process_config($config) { // set to defaults if undefined if (!isset ($config->rpc_negotiation_timeout)) { - $config->host = '30'; + $config->rpc_negotiation_timeout = '30'; } if (!isset ($config->auto_add_remote_users)) { $config->auto_add_remote_users = '0'; -- 2.39.5