From d7e2cd27ee49e8fb485542ba14d19dfd735a3b51 Mon Sep 17 00:00:00 2001 From: jsatoh Date: Mon, 2 Dec 2013 10:43:14 +0000 Subject: [PATCH] 2013-12-01 Junichi Satoh * include/functions_treeview.php: Fixed tree expansion failure by module. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@9151 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 5 +++++ pandora_console/include/functions_treeview.php | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index aac663f33a..3832ddb6af 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,8 @@ +2013-12-01 Junichi Satoh + + * include/functions_treeview.php: Fixed tree expansion failure + by module. + 2013-12-01 Miguel de Dios * include/functions_visual_map.php: fixed the old visual maps from diff --git a/pandora_console/include/functions_treeview.php b/pandora_console/include/functions_treeview.php index 05665adefd..ccbe0821d6 100755 --- a/pandora_console/include/functions_treeview.php +++ b/pandora_console/include/functions_treeview.php @@ -1273,7 +1273,7 @@ function treeview_getSecondBranchSQL ($fatherType, $id, $id_father) { default: case 'module': $symbols = ' !"#$%&\'()*+,./:;<=>?@[\\]^{|}~'; - $name = id_father; + $name = $id_father; for ($i = 0; $i < strlen($symbols); $i++) { $name = str_replace('_articapandora_'.ord(substr($symbols, $i, 1)).'_pandoraartica_', substr($symbols, $i, 1), $name); }