If the app is installed in a DocumentRoot, you won't have to edit the htaccess.default. Just copy it to webroot/.htaccess and make sure webroot is the DocRoot and you're fine. git-svn-id: svn://10.0.0.236/trunk@192154 18797224-902f-48f8-a5cc-f745e15eee43
17 lines
372 B
PHP
17 lines
372 B
PHP
<?php
|
|
/**
|
|
* Thank you page on survey completion.
|
|
* Since the input is all optional, on any submit they will see this.
|
|
* @package survey
|
|
* @subpackage docs
|
|
*/
|
|
require_once(HEADER);
|
|
|
|
echo <<<THANKS
|
|
<h1>Survey Temporarily Unavailable</h1>
|
|
<p>We're sorry, the uninstall survey is not available at this time. Please try again later.</p>
|
|
THANKS;
|
|
|
|
require_once(FOOTER);
|
|
?>
|