Fix DQL syntax

This commit is contained in:
Romain Neutron
2012-03-23 17:41:01 +01:00
parent fc926dbe33
commit a9ea620875

View File

@@ -98,7 +98,7 @@ class patch_361 implements patchInterface
}
$dql = 'SELECT b FROM Entities\Basket b WHERE b.description != ""';
$dql = "SELECT b FROM Entities\Basket b WHERE b.description != ''";
$query = $em->createQuery($dql);