bump version 2.2.10 and add install minimum php version notice
This commit is contained in:
parent
693e34e34c
commit
d92f53b754
2 changed files with 7 additions and 1 deletions
|
|
@ -7,7 +7,8 @@
|
||||||
********************/
|
********************/
|
||||||
|
|
||||||
define('G5_VERSION', '아보카도 에디션 : Amber');
|
define('G5_VERSION', '아보카도 에디션 : Amber');
|
||||||
define('G5_GNUBOARD_VER', '2.2.9');
|
define('G5_GNUBOARD_VER', '2.2.10');
|
||||||
|
define('G5_AMBER', true);
|
||||||
define('_GNUBOARD_', true);
|
define('_GNUBOARD_', true);
|
||||||
|
|
||||||
date_default_timezone_set("Asia/Seoul");
|
date_default_timezone_set("Asia/Seoul");
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,11 @@ $theme_6 = "#7488B2";
|
||||||
|
|
||||||
$title = G5_VERSION . " 라이센스 확인 1/3";
|
$title = G5_VERSION . " 라이센스 확인 1/3";
|
||||||
|
|
||||||
|
if (version_compare(PHP_VERSION, '5.6.0', '<')) {
|
||||||
|
echo "<h1>php 버전이 지원하는 버전보다 낮습니다.</h1><p>권장 php 버전은 7.4 입니다.</p><p>최소 php 버전은 5.6.0이며 최소 권장 버전은 5.6.22 이상입니다.</p>";
|
||||||
|
exit();
|
||||||
|
}
|
||||||
|
|
||||||
include_once "./install.inc.php";
|
include_once "./install.inc.php";
|
||||||
|
|
||||||
if ($exists_data_dir && $write_data_dir) {
|
if ($exists_data_dir && $write_data_dir) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue