public function __construct($strControlId) {
			parent::__construct("Cross Scripting Violation: Potential cross script injection in Control \"" .
				$strControlId . "\"\r\nTo allow any input on this TextBox control, set CrossScripting to QCrossScripting::Alow", 2);
		}
Esempio n. 2
0
 public function __construct($strFormId)
 {
     parent::__construct(sprintf('Invalid Form State Data for "%s" object (session may have been lost)', $strFormId), 2);
 }
Esempio n. 3
0
 public function __construct($intTokenType)
 {
     parent::__construct('Invalid Token Type found in file ' . QScriptParser::$CurrentParser->FilePath . ': ' . token_name($intTokenType));
 }
Esempio n. 4
0
 public function __construct($strMessage, $intOffset = 2)
 {
     parent::__construct($strMessage, $intOffset);
 }
Esempio n. 5
0
 public function __construct()
 {
     parent::__construct('Remote access to "' . QApplication::$RequestUri . '" has been disabled.' . "\r\nTo allow remote access to this script, set the ALLOW_REMOTE_ADMIN constant to TRUE\r\nor to \"" . $_SERVER['REMOTE_ADDR'] . '" in "configuration.inc.php".', 2);
 }