2009-08-18 Miguel de Dios <miguel.dedios@artica.es>

* godmode/reporting/reporting_builder.php: add filter parameter in ajax that
	pick the modules for select in form. The parameter is filter that don't
	search rows are pending to delete.
	Fixes: 2824695



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@1859 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2009-08-18 10:19:59 +00:00
parent af43b4bc5b
commit c89fe7310f
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2009-08-18 Miguel de Dios <miguel.dedios@artica.es>
* godmode/reporting/reporting_builder.php: add filter parameter in ajax that
pick the modules for select in form. The parameter is filter that don't
search rows are pending to delete.
Fixes: 2824695
2009-08-18 Miguel de Dios <miguel.dedios@artica.es> 2009-08-18 Miguel de Dios <miguel.dedios@artica.es>
* godmode/agentes/agent_template.php: refine the query to extract modules * godmode/agentes/agent_template.php: refine the query to extract modules
from DB, now the query don't search modules are pending to delete. from DB, now the query don't search modules are pending to delete.

View File

@ -563,6 +563,7 @@ function agent_changed () {
inputs.push ("id_agent=" + id_agent); inputs.push ("id_agent=" + id_agent);
inputs.push ("get_agent_modules_json=1"); inputs.push ("get_agent_modules_json=1");
inputs.push ("page=operation/agentes/ver_agente"); inputs.push ("page=operation/agentes/ver_agente");
inputs.push ("filter=delete_pending%3Dfalse");
jQuery.ajax ({ jQuery.ajax ({
data: inputs.join ("&"), data: inputs.join ("&"),
type: 'GET', type: 'GET',