Ver Fonte

added keyword

Nicolas Cannasse há 17 anos atrás
pai
commit
0937cefa9d
1 ficheiros alterados com 1 adições e 1 exclusões
  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;
 	}