Merge branch '1282-Errores-en-selectores-de-agentes-y-módulos-dev' into 'develop'

Fixed ordering and repetition modules

See merge request artica/pandorafms!820
This commit is contained in:
vgilc 2017-10-26 12:29:00 +02:00
commit 89f5af3b52
3 changed files with 3 additions and 3 deletions

View File

@ -600,7 +600,7 @@ $(document).ready (function () {
var params = {
"page" : "operation/agentes/ver_agente",
"get_agent_modules_json" : 1,
"get_id_and_name" : 1,
"get_distinct_name" : 1,
"indexed" : 0,
"privilege" : "AW"
};

View File

@ -741,7 +741,7 @@ $(document).ready (function () {
var params = {
"page" : "operation/agentes/ver_agente",
"get_agent_modules_json" : 1,
"get_id_and_name" : 1,
"get_distinct_name" : 1,
"indexed" : 0
};

View File

@ -97,7 +97,7 @@ if (is_ajax ()) {
$filter[] = "(notinit_count = total_count)";
break;
}
$filter['order'] = "nombre ASC";
$filter['order'] = "alias ASC";
// Build fields
$fields = array('id_agente', 'alias');