From 4723af283f098bea4e8d43a55ecbb0e68fbcbcc6 Mon Sep 17 00:00:00 2001 From: jerome Date: Wed, 14 Jan 2009 06:29:53 +0000 Subject: [PATCH] web service MDL-12886 remove varlog() call (it's a personal function, not a moodle function) --- webservice/rest/lib.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/webservice/rest/lib.php b/webservice/rest/lib.php index 2a29bc379a..23d14757e2 100644 --- a/webservice/rest/lib.php +++ b/webservice/rest/lib.php @@ -62,8 +62,6 @@ function retrieve_params ($description) { $value = optional_param($paramname,null,$paramtype); if (!empty($value)) { $fullstopposition = strrpos($paramname,":"); - varlog(substr($paramname,0,$fullstopposition)); - varlog(substr($paramname,$fullstopposition+1, strlen($paramname) - $fullstopposition)); //case: param is an object/array if (!empty($fullstopposition)) { $params[substr($paramname,0,$fullstopposition)][substr($paramname,$fullstopposition+1, strlen($paramname) - $fullstopposition)] = $value; -- 2.39.5