From: Matthias Schmidt Date: Mon, 24 Dec 2012 12:57:16 +0000 (+0100) Subject: Changes input type of IntegerOptionType from text to number X-Git-Tag: 2.0.0_Beta_1~639^2~7^2~2^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d74003bff26e73e0e1a046a9a1777e6ecf8341b6;p=GitHub%2FWoltLab%2FWCF.git Changes input type of IntegerOptionType from text to number --- diff --git a/wcfsetup/install/files/lib/system/option/IntegerOptionType.class.php b/wcfsetup/install/files/lib/system/option/IntegerOptionType.class.php index 9020316163..8250c2f23e 100644 --- a/wcfsetup/install/files/lib/system/option/IntegerOptionType.class.php +++ b/wcfsetup/install/files/lib/system/option/IntegerOptionType.class.php @@ -13,6 +13,11 @@ use wcf\data\option\Option; * @category Community Framework */ class IntegerOptionType extends TextOptionType { + /** + * @see wcf\system\option\TextOptionType::$inputType + */ + protected $inputType = 'number'; + /** * @see wcf\system\option\IOptionType::getData() */