2010-10-26 Junichi Satoh <junichi@rworks.jp>

* godmode/db/db_info.php: Fixed uninitialized variable is used.
	Fixed "get database information as text" does not work.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3465 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
jsatoh 2010-10-26 02:04:22 +00:00
parent 53e25643a2
commit abc87833ff
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2010-10-26 Junichi Satoh <junichi@rworks.jp>
* godmode/db/db_info.php: Fixed uninitialized variable is used.
Fixed "get database information as text" does not work.
2010-10-25 Miguel de Dios <miguel.dedios@artica.es>
* include/javascript/tiny_mce/plugins/media/editor_plugin_src.js,

View File

@ -44,6 +44,7 @@ if (! give_acl ($config['id_user'], 0, "DM")) {
if ($config['flash_charts']) {
$id_agente=0;
$width=600;
$height=400;
echo grafico_db_agentes_purge ($id_agente, $width, $height);
@ -82,7 +83,7 @@ $table->head[0] = __('Agent name');
$table->head[1] = __('Assigned modules');
$table->head[2] = __('Total data');
$agents = get_group_agents (1);
$agents = get_group_agents (0);
$count = get_agent_modules_data_count (array_keys ($agents));