1
0
mirror of https://github.com/Daichimarukana/uwuzu.git synced 2026-06-05 03:24:41 +00:00

uwuzu version 1.3.1 new_planet

This commit is contained in:
Daichimarukana
2024-03-02 22:27:25 +09:00
parent 1597041471
commit 15758bf040
16 changed files with 104 additions and 78 deletions
+5 -5
View File
@@ -178,12 +178,12 @@ $pdo = null;
<script type="text/javascript">
function checkForm($this) {
var str = $this.value;
while (str.match(/[^A-Za-z\d]/)) {
str = str.replace(/[^A-Za-z\d]/, "");
function checkForm(inputElement) {
var str = inputElement.value;
while (str.match(/[^A-Za-z\d_]/)) {
str = str.replace(/[^A-Za-z\d_]/, "");
}
$this.value = str;
inputElement.value = str;
}