templates.rst update

Added a bracket and semicolon on line 20
This commit is contained in:
Poehli
2014-02-14 15:55:33 +01:00
committed by Morris Jobke
parent 0c42f63133
commit b3a11613d8

View File

@@ -17,7 +17,7 @@ Templates are abstracted by the TemplateResponse object and used and returned in
// main is the template name. Owncloud will look for template/main.php
$response = new TemplateResponse($this->api, 'main');
$params = array('entries' => array('this', 'is', 'your', 'father', 'speaking')
$params = array('entries' => array('this', 'is', 'your', 'father', 'speaking'));
$response->setParams($params);
return $response;