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 -9
View File
@@ -339,17 +339,13 @@ $pdo = null;
</div>
<script type="text/javascript">
<!--
function checkForm($this)
{
var str=$this.value;
while(str.match(/[^A-Z^a-z\d\-]/))
{
str=str.replace(/[^A-Z^a-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;
}
//-->