Skip to content

Commit

Permalink
Tempate fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
molotow11 committed Mar 25, 2023
1 parent 6b8138b commit 5142bbd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

// no direct access
defined('_JEXEC') or die('Restricted access');
$active = JRequest::getVar("field".$field->id);
$active = JRequest::getVar("field".$field->id, array());
$field_params = json_decode($field->instance->fieldparams);
$values = $field_params->options;
if($field->instance->type == "integer") {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// no direct access
defined('_JEXEC') or die('Restricted access');

$active = JRequest::getVar("field".$field->id);
$active = JRequest::getVar("field".$field->id, array());
$field_params = json_decode($field->instance->fieldparams);
$values = $field_params->options;
if($field->instance->type == "integer") {
Expand Down

0 comments on commit 5142bbd

Please sign in to comment.