From 157306bc27b0914b5e983bc8a61350f24633786f Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Mon, 30 Mar 2015 18:36:55 -0500 Subject: [PATCH] Minor - Fix spacing of previous commit --- main/inc/lib/course.lib.php | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/main/inc/lib/course.lib.php b/main/inc/lib/course.lib.php index 3ca204a908..0ffab013e7 100755 --- a/main/inc/lib/course.lib.php +++ b/main/inc/lib/course.lib.php @@ -3305,7 +3305,7 @@ class CourseManager $my_course_image = new Image($source_file); $result = $my_course_image->send_image($course_image, -1, 'png'); - // Redimension image to 100x85 (should be 85x85 but 100x85 visually gives + // Resize image to 100x85 (should be 85x85 but 100x85 visually gives // better results for most images people put as course icon) if ($result) { $medium = new Image($course_image); @@ -3389,21 +3389,21 @@ class CourseManager public static function session_items_html($params, $is_sub_content = false) { $html = ''; - $html.= '
'; - $html.= '
'; + $html .= '
'; + $html .= '
'; if (!empty($params['link'])){ - $html.= ''; - $html.= $params['icon']; - $html.= ''; + $html .= ''; + $html .= $params['icon']; + $html .= ''; }else{ - $html.= $params['icon']; + $html .= $params['icon']; } - $html.= '
'; - $html.= '
'; - $html.= $params['title']; + $html .= '
'; + $html .= '
'; + $html .= $params['title']; $html .= $params['coaches']; - $html.='
'; - $html.='
'; + $html .= '
'; + $html .= '
'; return $html; }