mirror of
https://github.com/godotengine/godot-question2answer.git
synced 2026-01-01 01:48:37 +03:00
This project lived only on the server without version control. This is now the starting point for the repository.
16 lines
364 B
PHP
16 lines
364 B
PHP
<?php
|
|
/**
|
|
* @deprecated This file is deprecated from Q2A 1.7; use the below file instead.
|
|
*/
|
|
|
|
if (!defined('QA_VERSION')) {
|
|
header('Location: ../');
|
|
exit;
|
|
}
|
|
|
|
if (defined('QA_DEBUG_PERFORMANCE') && QA_DEBUG_PERFORMANCE) {
|
|
trigger_error('Included file ' . basename(__FILE__) . ' is deprecated');
|
|
}
|
|
|
|
require_once QA_INCLUDE_DIR.'pages/reset.php';
|