blob: bbc9d08a5dd4ec52b19b0934eec0bd17927834c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?php
/**
* content actions.
*
* @package mailadmin
* @subpackage content
* @author Your name here
* @version SVN: $Id: actions.class.php 2692 2006-11-15 21:03:55Z fabien $
*/
class contentActions extends sfActions
{
public function executeSecure()
{
LogEntryPeer::log("Attempt to access a secured action without proper credentials.", LogEntry::PRIO_WARNING);
$this->redirect($this->getRequest()->getReferer(), '@homepage');
}
}
|