Browse Source

added keyword

Nicolas Cannasse 17 năm trước cách đây
mục cha
commit
0937cefa9d
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      std/neko/db/Manager.hx

+ 1 - 1
std/neko/db/Manager.hx

@@ -325,7 +325,7 @@ class Manager<T : Object> {
 
 	function quoteField(f : String) {
 		var fsmall = f.toLowerCase();
-		if( fsmall == "read" || fsmall == "desc" || fsmall == "out" || fsmall == "group" || fsmall == "version" )
+		if( fsmall == "read" || fsmall == "desc" || fsmall == "out" || fsmall == "group" || fsmall == "version" || fsmall == "option" )
 			return "`"+f+"`";
 		return f;
 	}