Show warning if twig cache can not be used

Issue #13225

Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
Michal Čihař 2017-05-04 14:34:06 +02:00
parent ae9006e9be
commit 69da96b3e1

View File

@ -601,6 +601,17 @@ if ($cfg['SuhosinDisableWarning'] == false
);
}
/* Missing template cache */
if (is_null($GLOBALS['PMA_Config']->getTempDir('twig'))) {
trigger_error(
sprintf(
__('The $cfg[\'TempDir\'] (%s) is not accessible. phpMyAdmin is not able to cache templates and will be slow because of this.'),
$GLOBALS['PMA_Config']->get('TempDir')
),
E_USER_WARNING
);
}
/**
* Warning about incomplete translations.
*