added check for tidy and xmlreader extension

This commit is contained in:
Ralf Becker 2011-09-06 09:53:28 +00:00
parent f8ad548a9a
commit a363919485

View File

@ -221,6 +221,14 @@ $checks = array(
'func' => 'extension_check',
'error' => lang('The json extension is required by EGroupware for AJAX.'),
),
'tidy' => array(
'func' => 'extension_check',
'warning' => lang('The tidy extension is need in merge-print to clean up html before inserting it in office documents.'),
),
'xmlreader' => array(
'func' => 'extension_check',
'error' => lang('The xmlreader extension is required by EGroupware in several applications.'),
),
);
if (extension_loaded('session') && ini_get('session.save_handler') == 'files' && ($session_path = realpath(session_save_path())))
{