Missing a set of ()
diff --git a/data/controller.php b/data/controller.php
index 46706c1..b3eda1a 100644
--- a/data/controller.php
+++ b/data/controller.php
@@ -44,7 +44,7 @@ class Controller extends http\RestAction
/*! Gets the data from the model. */
public function DoGet(http\Request $request, http\Response $response)
{
- $this->model->SetFromarray_merge($request->data, $request->data['_GET']);
+ $this->model->SetFrom(array_merge($request->data, $request->data['_GET']));
try {
$response->data = $this->model->Fetch();
} catch (ModelException $e) {