mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
21 lines
409 B
PHP
21 lines
409 B
PHP
<?php
|
|
/**
|
|
* @Author: printempw
|
|
* @Date: 2016-08-11 13:08:13
|
|
* @Last Modified by: printempw
|
|
* @Last Modified time: 2016-08-29 13:47:13
|
|
*/
|
|
|
|
$options = [
|
|
'avatar_query_string' => '0',
|
|
'version' => '',
|
|
'check_update' => '1',
|
|
'update_source' => 'github'
|
|
];
|
|
|
|
foreach ($options as $key => $value) {
|
|
Option::set($key, $value);
|
|
}
|
|
|
|
Option::set('version', '3.0.2');
|