default theme=''

pull/4/head
qkqpttgf 2020-01-19 21:11:29 +08:00 committed by GitHub
parent b8f8a9b058
commit 3e639bcd56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -362,7 +362,8 @@ namespace:' . $namespace . '<br>
<tr>
<td><label>' . $key . '</label></td>
<td width=100%>
<select name="' . $key .'">';
<select name="' . $key .'">
<option value=""></option>';
foreach ($theme_arr as $v1) {
if ($v1!='.' && $v1!='..') $html .= '
<option value="'.$v1.'" '.($v1==getConfig($key)?'selected="selected"':'').'>'.$v1.'</option>';