/**
  * Returns true if the action must always be called in SSL.
  *
  * @param  sfAction A sfAction instance
  *
  * @return Boolean  true if the action must always be called in SSL, false otherwise
  */
 protected function sslRequired(sfAction $action)
 {
     return $action->getSecurityValue('require_ssl');
 }