// order_by improved

This commit is contained in:
vChabot
2012-01-31 15:33:10 +00:00
parent 2c7d3cc92b
commit 03d05fa1ed
5 changed files with 73 additions and 42 deletions
+1 -1
View File
@@ -555,7 +555,7 @@ class ValidateCore
*/
public static function isOrderBy($order)
{
return preg_match('/^[a-zA-Z0-9_-]+$/', $order);
return preg_match('/^[a-zA-Z0-9._-]+$/', $order);
}
/**