فهرست منبع

Oops, text inputs never had a type attribute!

pdontthink 21 سال پیش
والد
کامیت
4c2ad2499b
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      functions/options.php

+ 1 - 1
functions/options.php

@@ -208,7 +208,7 @@ class SquirrelOption {
                 $width = 25;
         }
 
-        $result = "<input name=\"new_$this->name\" value=\"" .
+        $result = "<input type=\"text\" name=\"new_$this->name\" value=\"" .
             htmlspecialchars($this->value) . 
             "\" size=\"$width\" $this->script />\n";
         return ($result);