From 64950be0a5ab8b61f2d90c929c1d9bac0579191a Mon Sep 17 00:00:00 2001 From: Eric Marguin Date: Tue, 27 Nov 2007 16:12:24 +0100 Subject: [PATCH] [svn r13795] fix a bug when reorganizing items (somes queries acted on all learning paths) --- main/newscorm/learnpath.class.php | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/main/newscorm/learnpath.class.php b/main/newscorm/learnpath.class.php index 7663397a70..572b061d08 100644 --- a/main/newscorm/learnpath.class.php +++ b/main/newscorm/learnpath.class.php @@ -930,8 +930,10 @@ class learnpath { UPDATE " . $tbl_lp_item . " SET display_order = display_order - 1 WHERE + lp_id = " . $this->get_id() . " AND display_order > " . $old_order . " AND parent_item_id = " . $old_parent; + $res_update_order = api_sql_query($sql_update_order, __FILE__, __LINE__); //echo '

' . $sql_update_order . '

'; @@ -1033,14 +1035,6 @@ class learnpath { //echo '

' . $sql_update_next . '

'; } - if($old_prerequisite!=$prerequisites){ - $sql_update_next = " - UPDATE " . $tbl_lp_item . " - SET prerequisite = " . $prerequisites . " - WHERE id = " . $id; - $res_update_next = api_sql_query($sql_update_next, __FILE__, __LINE__); - } - //update all the items with the same or a bigger display_order than //the current item $sql_update_order = " @@ -1054,6 +1048,17 @@ class learnpath { $res_update_next = api_sql_query($sql_update_order, __FILE__, __LINE__); //echo '

' . $sql_update_order . '

'; + + + + + if($old_prerequisite!=$prerequisites){ + $sql_update_next = " + UPDATE " . $tbl_lp_item . " + SET prerequisite = " . intval($prerequisites) . " + WHERE id = " .$id; + $res_update_next = api_sql_query($sql_update_next, __FILE__, __LINE__); + } /* END -- update the current item id to his new location */ }