move linker from core to app

This commit is contained in:
coderkun 2014-05-25 00:42:08 +02:00
commit 1754d062df
2 changed files with 2 additions and 5 deletions

View file

@ -65,7 +65,8 @@
parent::preFilter($request, $response);
// Create linker
$this->linker = new \nre\core\Linker($this->request);
$this->linker = new \nre\core\Linker($request);
$this->set('linker', $this->linker);
// Create text formatter
$this->set('t', new \hhu\z\TextFormatter($this->linker));