更新 1.1.6版本

This commit is contained in:
LyLme 2022-05-11 12:46:42 +08:00
parent 453edcf36c
commit 219a8138ab
2 changed files with 5 additions and 1 deletions

View File

@ -29,6 +29,10 @@ if($sqlvn < 10105) {
$version = 'v1.1.5';
$sql = $sql.file_get_contents(ROOT.'install/update2.sql');
}
if($sqlvn < 10106) {
$version = 'v1.1.6';
$sql = $sql.file_get_contents(ROOT.'install/update3.sql');
}
$sql=explode(';',$sql);
for ($i=0;$i<count($sql);$i++) {
if (trim($sql[$i])=='')continue;

View File

@ -1,3 +1,3 @@
<?php
define('VERSION', '1.1.5');
define('VERSION', '1.1.6');
?>