1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

Merged changeset #3621 into 0.9 and 0.10 branches. Fixed ws in trunk

This commit is contained in:
guilhermeblanco 2008-01-29 23:19:20 +00:00
parent 0944772133
commit 6b484334a4

View file

@ -48,7 +48,7 @@ class Doctrine_Task_Dql extends Doctrine_Task
$params = explode(',', $this->getArgument('params')); $params = explode(',', $this->getArgument('params'));
$this->notify('executing: "' . $dql . '" (' . implode(', ', $params) . ')'); $this->notify('executing: "' . $dql . '" (' . implode(', ', $params) . ')');
$results = $query->query($dql, $params); $results = $query->query($dql, $params);
$this->_printResults($results); $this->_printResults($results);