X-Git-Url: https://git-public.kairo.at/?a=blobdiff_plain;ds=sidebyside;f=app%2Fauthutils.php-class;h=d2737d9d7ebb3e6ff1326060fdee92368e0d3422;hb=720d53da6d399740b96b90ef554b739959d64f83;hp=440a153140b3c92fb594492cfe5c5a4b5450e9d6;hpb=55648bcf1a3d50e77d2077de5d2c9f2ad0631bfd;p=authserver.git diff --git a/app/authutils.php-class b/app/authutils.php-class index 440a153..d2737d9 100755 --- a/app/authutils.php-class +++ b/app/authutils.php-class @@ -121,8 +121,8 @@ class AuthUtils { // Sanitize settings. $this->settings['piwik_enabled'] = (@$this->settings['piwik_enabled']) ? true : false; $this->settings['piwik_site_id'] = intval(@$this->settings['piwik_site_id']); - $this->settings['piwik_url'] = strlen(@$this->settings['piwik_url']) ? $this->settings['piwik_url'] : '/piwik/'; - $this->settings['piwik_tracker_path'] = strlen(@$this->settings['piwik_tracker_path']) ? $this->settings['piwik_tracker_path'] : '../vendor/piwik/piwik-php-tracker/'; + $this->settings['piwik_url'] = strlen(@$this->settings['piwik_url']) ? $this->settings['piwik_url'] : '/matomo/'; + $this->settings['piwik_tracker_path'] = strlen(@$this->settings['piwik_tracker_path']) ? $this->settings['piwik_tracker_path'] : '../vendor/matomo/matomo-php-tracker/'; $this->settings['skin'] = (@$this->settings['skin'] && is_dir('skin/'.$this->settings['skin'])) ? $this->settings['skin'] : 'default'; $this->settings['operator_name'] = (@$this->settings['operator_name']) ? $this->settings['operator_name'] : 'Example'; $this->settings['operator_contact_url'] = (@$this->settings['operator_contact_url']) ? $this->settings['operator_contact_url'] : 'https://github.com/KaiRo_at/authserver/';