Skip to content

Commit ae2ba3c

Browse files
committed
Fix hestiacp#2851 Saving timezone to UTC does not update dropdown correctly
1 parent a1716a5 commit ae2ba3c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

web/templates/pages/edit_server.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,9 @@
8080
if ((!empty($v_timezone)) && ( $key == $v_timezone)){
8181
echo ' selected' ;
8282
}
83+
if($key == "UTC" && $v_timezone == "Etc/UTC"){
84+
echo ' selected' ;
85+
}
8386
echo ">".$value."</option>\n";
8487
}
8588
?>

0 commit comments

Comments
 (0)