From 04b7011e0d47777c97cec08ef2e7cd9397390234 Mon Sep 17 00:00:00 2001 From: mdtrooper Date: Wed, 26 Aug 2009 17:08:53 +0000 Subject: [PATCH] 2009-08-26 Miguel de Dios * operation/extensions.php, godmode/extensions.php: fix hidden bug that show a warning when try to show the extension that not is of operation or the other. And add feature can load invible (in menu) extensions. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1884 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f --- pandora_console/ChangeLog | 6 ++++++ pandora_console/godmode/extensions.php | 2 ++ pandora_console/operation/extensions.php | 3 +++ 3 files changed, 11 insertions(+) diff --git a/pandora_console/ChangeLog b/pandora_console/ChangeLog index 67a7afb86a..a00e79cb5f 100644 --- a/pandora_console/ChangeLog +++ b/pandora_console/ChangeLog @@ -1,3 +1,9 @@ +2009-08-26 Miguel de Dios + + * operation/extensions.php, godmode/extensions.php: fix hidden bug that show + a warning when try to show the extension that not is of operation or the + other. And add feature can load invible (in menu) extensions. + 2009-08-26 Miguel de Dios * include/functions_extensions.php: add the small description in the diff --git a/pandora_console/godmode/extensions.php b/pandora_console/godmode/extensions.php index 72e2d843eb..91a14a89b9 100644 --- a/pandora_console/godmode/extensions.php +++ b/pandora_console/godmode/extensions.php @@ -37,6 +37,8 @@ $table->data = array (); foreach ($config['extensions'] as $extension) { if ($extension['godmode_function'] == '') continue; + if ($extension['godmode_menu'] == null) + continue; $data = array (); $data[0] = ''.$extension['godmode_menu']['name'].''; diff --git a/pandora_console/operation/extensions.php b/pandora_console/operation/extensions.php index b52e09e69f..dc5124e6c8 100644 --- a/pandora_console/operation/extensions.php +++ b/pandora_console/operation/extensions.php @@ -36,6 +36,9 @@ $table->data = array (); foreach ($config['extensions'] as $extension) { if ($extension['main_function'] == '') continue; + if ($extension['operation_menu'] == null) + continue; + $data = array (); $data[0] = ''.$extension['operation_menu']['name']; array_push ($table->data, $data);