/**
  * New Readinglist Controller
  * 
  * @param MvcEvent $event
  */
 public function __construct(MvcEvent $event)
 {
     parent::__construct($event);
     // don't show the header in readinglist
     // (including errors, which is why it's here in the constructor)
     $this->response->setVariable('no_header', 'true');
 }