[svn r12496] fix a bug : escape single quotes in the learpath title in the tree menu

skala
Julian Prud'homme 19 years ago
parent a17a492712
commit 8601cdc587
  1. 2
      main/newscorm/learnpath.class.php

@ -3734,7 +3734,7 @@ class learnpath {
$arrLP[] = array(
'id' => $row['id'],
'item_type' => $row['item_type'],
'title' => $row['title'],
'title' => addslashes($row['title']),
'path' => $row['path'],
'description' => $row['description'],
'parent_item_id' => $row['parent_item_id'],

Loading…
Cancel
Save