2010-10-14 Miguel de Dios <miguel.dedios@artica.es>

* extensions/system_info.php: add TODO.
	
	* godmode/agentes/module_manager_editor.php: fixed the ajax with the new
	safe_ouput function.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@3395 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2010-10-14 10:31:30 +00:00
parent e96094c81a
commit e8eb6d9ee8
3 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2010-10-14 Miguel de Dios <miguel.dedios@artica.es>
* extensions/system_info.php: add TODO.
* godmode/agentes/module_manager_editor.php: fixed the ajax with the new
safe_ouput function.
2010-10-14 Junichi Satoh <junichi@rworks.jp>
* godmode/massive/massive_enable_disable_alerts.php,

View File

@ -469,6 +469,8 @@ function consoleMode() {
echo 'tar zcvf ' . $tempDirSystem . '/' . $nameDir . '.tar.gz ' . $tempDir . '*' . "\n";
$result = shell_exec('tar zcvf ' . $tempDirSystem . '/' . $nameDir . '.tar.gz ' . $tempDir . '*');
//TODO Delete the temp directory
echo "You find the result file in " . $tempDirSystem . '/' . $nameDir . ".tar.gz\n";
}
}

View File

@ -61,6 +61,9 @@ if (is_ajax ()) {
$id_component = (int) get_parameter ('id_module_component');
$component = get_db_row ('tlocal_component', 'id', $id_component);
foreach ($component as $index => $element) {
$component[$index] = html_entity_decode($element, ENT_QUOTES, "UTF-8");
}
$typeName = parseLocalModuleExtractValue('module_type',$component['data']);