mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-30 01:05:39 +02:00
Merge branch 'ent-11322-cambiar-la-opcion-predeterminada-al-crear-el-componente-remoto' into 'develop'
Ent 11322 cambiar la opcion predeterminada al crear el componente remoto See merge request artica/pandorafms!5937
This commit is contained in:
commit
045f249931
@ -327,7 +327,7 @@ $table->data[10][2] = __('Discard unknown events');
|
|||||||
$table->data[10][3] = html_print_checkbox(
|
$table->data[10][3] = html_print_checkbox(
|
||||||
'throw_unknown_events',
|
'throw_unknown_events',
|
||||||
1,
|
1,
|
||||||
network_components_is_disable_type_event($id, EVENTS_GOING_UNKNOWN),
|
network_components_is_disable_type_event(($id === 0) ? false : $id, EVENTS_GOING_UNKNOWN),
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ function network_components_is_disable_type_event($id=false, $type_event=false)
|
|||||||
if ($id === false) {
|
if ($id === false) {
|
||||||
switch ($type_event) {
|
switch ($type_event) {
|
||||||
case EVENTS_GOING_UNKNOWN:
|
case EVENTS_GOING_UNKNOWN:
|
||||||
return true;
|
return false;
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case EVENTS_UNKNOWN:
|
case EVENTS_UNKNOWN:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user