function passed_security_check(&$xml_string)
	{
		$passed = false;
		$passed = SecurityOperationsFacade::passed_security_check($xml_string);
		if (!$passed)
		{
			$this->output_function = "show_login";
		}
		return $passed;
	}