Browse Source

added xsd:long type

Piotr Labudda 7 năm trước cách đây
mục cha
commit
545fa3a0ea
2 tập tin đã thay đổi với 2 bổ sung0 xóa
  1. 1 0
      SE/se-lib/AclQueryFeatures.php
  2. 1 0
      SE/se-lib/UI.php

+ 1 - 0
SE/se-lib/AclQueryFeatures.php

@@ -72,6 +72,7 @@ class AclQueryFeatures {
 				}
 			default: {
 				switch ($fieldType) {
+					case 'xsd:long':
 					case 'xsd:number':
 					case 'xsd:int':
 					case 'xsd:integer': {

+ 1 - 0
SE/se-lib/UI.php

@@ -490,6 +490,7 @@ class UI {
 
 		switch ($xsdType) {
 
+			case 'xsd:long':
 			case 'xsd:integer': {
 				$html->attrs['type'] = 'number';
 				$html->attrs['class'][] = 'input-small';