From 3f6fa5389945273a2d12ba8b83c641486706bfa8 Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Thu, 10 Apr 2008 00:43:29 +0200 Subject: [PATCH] [svn r14819] Added parameter to get_db_progress() to allow for a non-altered result --- main/newscorm/learnpath.class.php | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/main/newscorm/learnpath.class.php b/main/newscorm/learnpath.class.php index cfc6dbbeed..8aaec8dd38 100644 --- a/main/newscorm/learnpath.class.php +++ b/main/newscorm/learnpath.class.php @@ -1831,9 +1831,11 @@ class learnpath { * @param integer Learnpath ID * @param integer User ID * @param string Mode of display ('%','abs' or 'both') + * @param string Course database name (optional, defaults to '') + * @param boolean Whether to return null if no record was found (true), or 0 (false) (optional, defaults to false) * @return integer Current progress value as found in the database */ - function get_db_progress($lp_id,$user_id,$mode='%', $course_db='') + function get_db_progress($lp_id,$user_id,$mode='%', $course_db='', $sincere=false) { //if($this->debug>0){error_log('New LP - In learnpath::get_db_progress()',0);} $table = Database::get_course_table('lp_view', $course_db); @@ -1846,6 +1848,13 @@ class learnpath { $progress = $row['progress']; $view_id = $row['id']; } + else + { + if($sincere) + { + return null; + } + } if(!$progress) { $progress = '0';