// order_by improved

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12868 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
vChabot
2012-01-31 15:33:10 +00:00
parent 7f7b7361fb
commit b36be68154
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);
}
/**