From cf506fde267ddd956df214fddab1ecedf408a5be Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Wed, 12 Aug 2015 11:46:45 +0200 Subject: [PATCH] Minor -format code --- main/mySpace/myStudents.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main/mySpace/myStudents.php b/main/mySpace/myStudents.php index b92e7f6185..296c1d1a43 100755 --- a/main/mySpace/myStudents.php +++ b/main/mySpace/myStudents.php @@ -168,7 +168,7 @@ $check = Security::check_token('get'); if ($check) { switch ($_GET['action']) { - case 'reset_lp' : + case 'reset_lp': $course = isset($_GET['course']) ? $_GET['course'] : ""; $lp_id = isset($_GET['lp_id']) ? intval($_GET['lp_id']) : ""; @@ -329,11 +329,11 @@ if (!empty($student_id)) { echo $send_mail; if (!empty($student_id) && !empty($_GET['course'])) { // Only show link to connection details if course and student were defined in the URL - echo ''. + echo ''. Display :: return_icon('statistics.png', get_lang('AccessDetails'),'',ICON_SIZE_MEDIUM).''; } if (api_can_login_as($student_id)) { - echo ''. + echo ''. Display::return_icon('login_as.png', get_lang('LoginAs'), null, ICON_SIZE_MEDIUM).'  '; } @@ -1159,7 +1159,7 @@ if (!empty($student_id)) { } if ($export_csv) { ob_end_clean(); - Export :: arrayToCsv($csv_content, 'reporting_student'); + Export::arrayToCsv($csv_content, 'reporting_student'); exit; }