Skip to content

Commit

Permalink
wrapping
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Oct 17, 2017
1 parent aefa1fb commit 9db31f9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/Horde/Core/ActiveSync/Driver.php
Expand Up @@ -2153,7 +2153,11 @@ public function getSearchResults($type, array $query)
$results = $this->_connector->files_browse($q['DocumentLibrary:LinkId']);
}
}
return array('rows' => $results, 'total' => count($results), 'status' => Horde_ActiveSync_Request_Search::STORE_STATUS_SUCCESS);
return array(
'rows' => $results,
'total' => count($results),
'status' => Horde_ActiveSync_Request_Search::STORE_STATUS_SUCCESS
);
}
}

Expand Down

0 comments on commit 9db31f9

Please sign in to comment.