From 40171d2db35a819b5a81fccbf3cc8cf043cd94c0 Mon Sep 17 00:00:00 2001 From: Junichi Satoh Date: Thu, 22 Dec 2016 16:45:48 +0900 Subject: [PATCH] Added check for php calendar extension. (Its extension is included in the base php package for Linux. But, It is not included in FreeBSD by default. So, it should be checked.) --- pandora_console/install.php | 1 + 1 file changed, 1 insertion(+) diff --git a/pandora_console/install.php b/pandora_console/install.php index b12d279235..c805d3f352 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -591,6 +591,7 @@ function install_step2() { $res += check_extension("json","PHP json extension"); $res += check_extension("curl","CURL (Client URL Library)"); $res += check_extension("filter","PHP filter extension"); + $res += check_extension("calendar","PHP calendar extension"); if (PHP_OS == "FreeBSD") { $res += check_exists ("/usr/local/bin/twopi","Graphviz Binary"); }