From 72b089fcb6eeecbf8ce3b70de04ec3e3d2623a28 Mon Sep 17 00:00:00 2001 From: Cristian Fasanando Date: Thu, 30 Apr 2009 20:24:24 +0200 Subject: [PATCH] [svn r20232] Fixed test is identified by different names in lp - see FS#3699 --- main/newscorm/learnpath.class.php | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/main/newscorm/learnpath.class.php b/main/newscorm/learnpath.class.php index 58f1a3063f..eb0869f9ba 100644 --- a/main/newscorm/learnpath.class.php +++ b/main/newscorm/learnpath.class.php @@ -5388,8 +5388,7 @@ class learnpath { $sql_hot = "SELECT * FROM ".$TBL_DOCUMENT." WHERE path LIKE '".$uploadPath."/%/%htm%' - ORDER BY id ASC"; - + AND id = ".(int)$extra_info." ORDER BY id ASC"; $res_hot = api_sql_query($sql_hot, __FILE__, __LINE__); @@ -5397,6 +5396,10 @@ class learnpath { $item_title = $row['title']; $item_description = $row['description']; + + if(!empty($row['comment'])) { + $item_title = $row['comment']; + } } else { @@ -7882,7 +7885,7 @@ class learnpath { $return .= '
'; //display quizhotpotatoes $return .= ''; - $return .= '' . $row_hot['title'] . ''; + $return .= '' . ((!empty($row_hot['comment']))?$row_hot['comment']:$row_hot['title']). ''; //$return .= $row_quiz['title']; $return .= '
'; }