소스 검색

added xsd:long type

Piotr Labudda 7 년 전
부모
커밋
545fa3a0ea
2개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  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';