Skip to content
Snippets Groups Projects

php8 only; added variable types; short array syntax; remove glyphicons

Merged Hahn Axel (hahn) requested to merge 7359-update-php83 into master
2 files
+ 7
6
Compare changes
  • Side-by-side
  • Inline

Files

@@ -296,7 +296,7 @@ class Actionlog
$aForms["filter"]["form"]['selectproject'] = [
'type' => 'select',
'name' => 'selectproject',
'label' => $oHtml->getIcon('project') .' '. t('project'),
'label' => $oHtml->getIcon('project') . ' ' . t('project'),
'class' => 'span2',
'onchange' => 'updateActionlog();',
'inline' => true,
@@ -310,7 +310,7 @@ class Actionlog
$aForms["filter"]["form"]['selectfrom'] = [
'type' => 'select',
'name' => 'selectWheretime',
'label' => $oHtml->getIcon('calendar') .' '. t("class-actionlog-time"),
'label' => $oHtml->getIcon('calendar') . ' ' . t("class-actionlog-time"),
'class' => 'span2',
'onchange' => 'updateActionlog();',
'options' => $aTimes,
@@ -319,7 +319,7 @@ class Actionlog
$aForms["filter"]["form"]['selectlimit'] = [
'type' => 'select',
'name' => 'selectlimit',
'label' => $oHtml->getIcon('list') .' '. t("class-actionlog-count"),
'label' => $oHtml->getIcon('list') . ' ' . t("class-actionlog-count"),
'class' => 'span1',
'onchange' => 'updateActionlog();',
'options' => $aLimits,
Loading