Commit a8c5542f authored by jwage's avatar jwage

Merged r3830 to trunk and 0.9 branch. Bug was originally fixed in the 0.10 branch first

parent 59e7ac2c
......@@ -45,11 +45,12 @@ class Doctrine_Task_Dql extends Doctrine_Task
$query = new Doctrine_Query();
$params = explode(',', $this->getArgument('params'));
$params = $this->getArgument('params');
$params = $params ? explode(',', $params):null;
$this->notify('executing: "' . $dql . '" (' . implode(', ', $params) . ')');
$results = $query->query($dql, $params);
$results = $query->query($dql);
$this->_printResults($results);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment