diff options
Diffstat (limited to 'app/Template/config/about.php')
-rw-r--r-- | app/Template/config/about.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/Template/config/about.php b/app/Template/config/about.php index 3f34f802..d96e6bdd 100644 --- a/app/Template/config/about.php +++ b/app/Template/config/about.php @@ -21,19 +21,19 @@ <ul> <li> <?= t('Database driver:') ?> - <strong><?= Helper\escape(DB_DRIVER) ?></strong> + <strong><?= $this->e(DB_DRIVER) ?></strong> </li> <?php if (DB_DRIVER === 'sqlite'): ?> <li> <?= t('Database size:') ?> - <strong><?= Helper\format_bytes($db_size) ?></strong> + <strong><?= $this->formatBytes($db_size) ?></strong> </li> <li> - <?= Helper\a(t('Download the database'), 'config', 'downloadDb', array(), true) ?> + <?= $this->a(t('Download the database'), 'config', 'downloadDb', array(), true) ?> <?= t('(Gzip compressed Sqlite file)') ?> </li> <li> - <?= Helper\a(t('Optimize the database'), 'config', 'optimizeDb', array(), true) ?> + <?= $this->a(t('Optimize the database'), 'config', 'optimizeDb', array(), true) ?> <?= t('(VACUUM command)') ?> </li> <?php endif ?> |