From: Dan Marsden Date: Mon, 24 Aug 2015 09:11:35 +0000 (+1200) Subject: remove deprecated calls to PARAM_MULTILANG X-Git-Url: https://git.cameron1729.xyz/?a=commitdiff_plain;h=027c995916f711e25a81fe756e8b760baa54ffde;p=moodle-mod_attendance.git remove deprecated calls to PARAM_MULTILANG --- diff --git a/preferences.php b/preferences.php index 795bc77..55dc66c 100644 --- a/preferences.php +++ b/preferences.php @@ -105,8 +105,8 @@ switch ($att->pageparams->action) { $att->update_status($status, null, null, null, 1); break; case att_preferences_page_params::ACTION_SAVE: - $acronym = required_param_array('acronym', PARAM_MULTILANG); - $description = required_param_array('description', PARAM_MULTILANG); + $acronym = required_param_array('acronym', PARAM_TEXT); + $description = required_param_array('description', PARAM_TEXT); $grade = required_param_array('grade', PARAM_RAW); foreach ($grade as &$val) { $val = unformat_float($val);