From 3394a576754a69dbe4a3cd03e8be691353259e7b Mon Sep 17 00:00:00 2001 From: peterbulmer Date: Thu, 25 Sep 2008 09:54:47 +0000 Subject: [PATCH] MDL-16560 - correct bogus function call Author: Peter Bulmer --- mnet/remote_client.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mnet/remote_client.php b/mnet/remote_client.php index d618bf93e6..9a5aff499e 100644 --- a/mnet/remote_client.php +++ b/mnet/remote_client.php @@ -66,7 +66,7 @@ class mnet_remote_client extends mnet_peer { $temp = new mnet_peer(); $temp->set_id($this->id); if($this->public_key != $temp->public_key) { - $newkey = param_clean($temp->public_key, PARAM_PEM); + $newkey = clean_param($temp->public_key, PARAM_PEM); if(!empty($newkey)) { $this->public_key = $newkey; return true; -- 2.39.5