Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
Typo fix and view model argument fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fbergkemper committed May 8, 2015
1 parent 846571f commit 90d6486
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions module/Restore/src/Restore/Controller/RestoreController.php
Expand Up @@ -28,7 +28,7 @@
use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;
use Zend\ViewModel\JsonModel;
use Zend\Restore\Form\RestoreForm;
use Restore\Form\RestoreForm;

class RestoreController extends AbstractActionController
{
Expand All @@ -49,10 +49,10 @@ public function indexAction()
$this->getFilesets("long")
);

return new ViewModel(
return new ViewModel(array(
'restore_params' => $this->restore_params,
'form' => $form
);
));

}
else {
Expand Down

0 comments on commit 90d6486

Please sign in to comment.