* Added feature #9281: Add a method to easily do a HTTP redirect
* Declared t3lib_div::readLLPHPfile() and t3lib_div::removeXSS() static
+ * Fixed bug: When there is no TypoScript template found the message "No template found!" is not obvious, does it mean a TS template or a HTML template?
2008-09-02 Stanislas Rolland <typo3@sjbr.ca>
$GLOBALS['TT']->pull();
} else {
if ($this->checkPageUnavailableHandler()) {
- $this->pageUnavailableAndExit('No template found!');
+ $this->pageUnavailableAndExit('No TypoScript template found!');
} else {
- $message = 'No template found!';
+ $message = 'No TypoScript template found!';
header('HTTP/1.0 503 Service Temporarily Unavailable');
t3lib_div::sysLog($message, 'cms', t3lib_div::SYSLOG_SEVERITY_ERROR);
$this->printError($message);