diff --git a/public_html/deployment/classes/actionlog.class.php b/public_html/deployment/classes/actionlog.class.php index 35568cfe24ec75ca8a8ce904830b71ac7e496081..05d9069658a08f2980b85884a3886e84b405288a 100644 --- a/public_html/deployment/classes/actionlog.class.php +++ b/public_html/deployment/classes/actionlog.class.php @@ -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, diff --git a/public_html/deployment/classes/base.class.php b/public_html/deployment/classes/base.class.php index 3539cacd883dac508fd67cadff7cf7b67e611439..fdaa3789f7c0db8a0ad234cfb97dbde10ee51067 100644 --- a/public_html/deployment/classes/base.class.php +++ b/public_html/deployment/classes/base.class.php @@ -7,14 +7,15 @@ require_once 'user.class.php'; * * @author hahn */ -class base { +class base +{ /** * logged in user as user object * @var user */ public user $oUser; - + /** * init user with optional given user * @param type $sUser @@ -22,5 +23,5 @@ class base { $this->oUser=new user(); } */ - + }