Example #1
0
 public function beforeRedirect($url, $status = null, $exit = true)
 {
     parent::beforeRedirect($url, $status, $exit);
 }
Example #2
0
 public function beforeRedirect($url, $status = NULL, $exit = true)
 {
     /*
     $this->log(array(
     	'params'	=> $this->request->params,
     	'here'		=> $this->here,
     	'refer'		=> $this->referer(),
     	'session'	=> $this->Session->read()
     ), 'debug');
     */
     header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
     return parent::beforeRedirect($url, $status, $exit);
 }
 public function beforeRedirect($url, $status = null, $exit = true)
 {
     parent::beforeRedirect($url, $status, $exit);
     if (Configure::read('LogRequests')) {
         $this->log_request_tail();
     }
 }