mirror of
https://github.com/godotengine/godot-question2answer.git
synced 2026-01-01 01:48:37 +03:00
11 lines
275 B
PHP
11 lines
275 B
PHP
<?php
|
|
|
|
|
|
if (!defined('QA_VERSION')) { // don't allow this page to be requested directly from browser
|
|
header('Location: ../../');
|
|
exit;
|
|
}
|
|
|
|
|
|
qa_register_plugin_module('widget', 'qa-godot-readonly-warning.php', 'qa_godot_readonly_warning', 'Read-only Warning');
|