mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
6ee2c247ce
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.
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);
|
|
?>
|