From a3639194854fcb55a49719a3eec01497d7f3d260 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 6 Sep 2011 09:53:28 +0000 Subject: [PATCH] added check for tidy and xmlreader extension --- setup/check_install.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/setup/check_install.php b/setup/check_install.php index 8b0194cf08..1b881c4203 100644 --- a/setup/check_install.php +++ b/setup/check_install.php @@ -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()))) {