mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-23 13:55:43 +02:00
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
413397b9e0
commit
9d44dc6afd
@ -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>
|
2010-10-14 Junichi Satoh <junichi@rworks.jp>
|
||||||
|
|
||||||
* godmode/massive/massive_enable_disable_alerts.php,
|
* godmode/massive/massive_enable_disable_alerts.php,
|
||||||
|
@ -469,6 +469,8 @@ function consoleMode() {
|
|||||||
echo 'tar zcvf ' . $tempDirSystem . '/' . $nameDir . '.tar.gz ' . $tempDir . '*' . "\n";
|
echo 'tar zcvf ' . $tempDirSystem . '/' . $nameDir . '.tar.gz ' . $tempDir . '*' . "\n";
|
||||||
$result = shell_exec('tar zcvf ' . $tempDirSystem . '/' . $nameDir . '.tar.gz ' . $tempDir . '*');
|
$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";
|
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');
|
$id_component = (int) get_parameter ('id_module_component');
|
||||||
|
|
||||||
$component = get_db_row ('tlocal_component', 'id', $id_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']);
|
$typeName = parseLocalModuleExtractValue('module_type',$component['data']);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user