Minor: Fix type of value - refs BT#21621

pull/5654/head
Angel Fernando Quiroz Campos 5 months ago
parent f957829c8f
commit ed9d3144be
No known key found for this signature in database
GPG Key ID: B284841AE3E562CD
  1. 2
      public/main/my_space/myStudents.php

@ -27,7 +27,7 @@ $export = $_GET['export'] ?? false;
$sessionId = isset($_GET['sid']) ? (int) $_GET['sid'] : 0;
$action = $_GET['action'] ?? '';
$origin = api_get_origin();
$courseId = isset($_GET['cid']) ? (int) $_GET['cid'] : '';
$courseId = isset($_GET['cid']) ? (int) $_GET['cid'] : 0;
$course = api_get_course_entity($courseId);
$courseCode = '';
if (null !== $course) {

Loading…
Cancel
Save