Minor - proper format for long parameters in a function.

1.9.x
Julio Montoya 12 years ago
parent 5ff7211554
commit c0eb3ef405
  1. 12
      main/inc/lib/course.lib.php

@ -1130,7 +1130,17 @@ class CourseManager {
* @param int if using the session_id: 0 or 2 (student, coach), if using session_id = 0 STUDENT or COURSEMANAGER
* @return array
*/
public static function get_user_list_from_course_code($course_code = null, $session_id = 0, $limit = null, $order_by = null, $filter_by_status = null, $return_count = null, $add_reports = false, $resumed_report = false, $extra_field = null) {
public static function get_user_list_from_course_code(
$course_code = null,
$session_id = 0,
$limit = null,
$order_by = null,
$filter_by_status = null,
$return_count = null,
$add_reports = false,
$resumed_report = false,
$extra_field = null
) {
// variable initialisation
$session_id = intval($session_id);
$course_code = Database::escape_string($course_code);

Loading…
Cancel
Save