mirror of
https://github.com/LyLme/lylme_spage.git
synced 2024-11-17 14:34:08 +08:00
修复 链接颜色导致bug
This commit is contained in:
parent
52b9bd249c
commit
552ffb697d
@ -53,6 +53,10 @@ if($sqlvn < 10304) {
|
||||
if($sqlvn < 10500) {
|
||||
$version = 'v1.5.0';
|
||||
}
|
||||
if($sqlvn < 10501) {
|
||||
$version = 'v1.5.1';
|
||||
$sql = $sql.file_get_contents(ROOT.'install/update6.sql');
|
||||
}
|
||||
$sql=explode(';',$sql);
|
||||
for ($i=0;$i<count($sql);$i++) {
|
||||
if (trim($sql[$i])=='')continue;
|
||||
|
@ -1,3 +1,3 @@
|
||||
<?php
|
||||
define('VERSION', '1.5.0');
|
||||
define('VERSION', '1.5.1');
|
||||
?>
|
2
install/update6.sql
Normal file
2
install/update6.sql
Normal file
@ -0,0 +1,2 @@
|
||||
-- v1.5.1
|
||||
ALTER TABLE `lylme_links` CHANGE `name` `name` VARCHAR(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL COMMENT '链接标题';
|
Loading…
Reference in New Issue
Block a user