diff options
author | Ben RUBSON <ben.rubson@gmail.com> | 2018-11-27 23:04:19 +0100 |
---|---|---|
committer | fguillot <fred@kanboard.net> | 2018-11-27 19:39:48 -0800 |
commit | ebf8c5f8393d9457aa304f359814aceaec1856c8 (patch) | |
tree | 5ebb987bc8fe85b7f0e35d444ad9737ed49e3a3c /app/Template/config/about.php | |
parent | 6099567fa5c6d203b645f91bddf199e6aca72ad3 (diff) |
Disable php_uname() warning
Diffstat (limited to 'app/Template/config/about.php')
-rw-r--r-- | app/Template/config/about.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Template/config/about.php b/app/Template/config/about.php index 3f2705f2..29063841 100644 --- a/app/Template/config/about.php +++ b/app/Template/config/about.php @@ -37,7 +37,7 @@ </li> <li> <?= t('OS version:') ?> - <strong><?= php_uname('s').' '.php_uname('r') ?></strong> + <strong><?= @php_uname('s').' '.@php_uname('r') ?></strong> </li> <li> <?= t('Database driver:') ?> |