Commit fdf4aa18 authored by lsmith's avatar lsmith

- implode expects an array()

parent 4a069d8f
......@@ -46,7 +46,7 @@ class Doctrine_Task_Dql extends Doctrine_Task
$query = new Doctrine_Query();
$params = $this->getArgument('params');
$params = $params ? explode(',', $params):null;
$params = $params ? explode(',', $params):array();
$this->notify('executing: "' . $dql . '" (' . implode(', ', $params) . ')');
......
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