api_get_setting now allows "0" values (to accept the exercise_min_note) needs more verification if does not mess with other options...

skala
Julio Montoya 14 years ago
parent be7f4195c1
commit 1563463e40
  1. 4
      main/inc/lib/main_api.lib.php

@ -1725,7 +1725,9 @@ function api_get_coachs_from_course($session_id=0,$course_code='') {
*/
function api_get_setting($variable, $key = null) {
global $_setting;
return is_null($key) ? (!empty($_setting[$variable]) ? $_setting[$variable] : null) : $_setting[$variable][$key];
//return is_null($key) ? (!empty($_setting[$variable]) ? $_setting[$variable] : null) : $_setting[$variable][$key]; does not allow "0" values
//Allowing "0" values
return is_null($key) ? (($_setting[$variable] != '') ? $_setting[$variable] : null) : $_setting[$variable][$key];
}
/**

Loading…
Cancel
Save