From 83206fd03f9e18fa483d37543d01609e530bf420 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Fri, 11 Jun 2010 13:36:11 +0000 Subject: [PATCH] added a check for json extension --- setup/check_install.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup/check_install.php b/setup/check_install.php index 634e7e49d8..e8339b2268 100644 --- a/setup/check_install.php +++ b/setup/check_install.php @@ -209,6 +209,10 @@ $checks = array( 'func' => 'extension_check', 'warning' => lang('The mcrypt extension is used, to store eTemplate form state on the client, which is the prefered way to store it.'), ), + 'json' => array( + 'func' => 'extension_check', + 'error' => lang('The json extension is required by EGroupware for AJAX.'), + ), ); if (extension_loaded('session') && ini_get('session.save_handler') == 'files' && ($session_path = realpath(session_save_path()))) {