Skip to content

Commit

Permalink
Match method signature of parent.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jun 5, 2015
1 parent 4a2a269 commit 84abaf3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions nag/lib/Driver/Kolab.php
Expand Up @@ -558,11 +558,15 @@ public function listAlarms($date)
/**
* Retrieves sub-tasks from the database.
*
* @param string $parentId The parent id for the sub-tasks to retrieve.
* @param string $parentId The parent id for the sub-tasks to
* retrieve.
* @param boolean $include_history Include created/modified info? Not
* currently honored.
*
* @return array List of sub-tasks.
* @throws Nag_Exception
*/
public function getChildren($parentId)
public function getChildren($parentId, $include_history = true)
{
$task_list = $this->_getData()->getObjects();
if (empty($task_list)) {
Expand Down

0 comments on commit 84abaf3

Please sign in to comment.