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:
parent
e96094c81a
commit
e8eb6d9ee8
|
@ -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,
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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']);
|
||||
|
||||
|
|
Loading…
Reference in New Issue