mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/11700] Add file headers to develop scripts for namespace
PHPBB3-11700
This commit is contained in:
@@ -1,4 +1,19 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @copyright (c) 2012 phpBB Group
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
//
|
||||||
|
// Security message:
|
||||||
|
//
|
||||||
|
// This script is potentially dangerous.
|
||||||
|
// Remove or comment the next line (die(".... ) to enable this script.
|
||||||
|
// Do NOT FORGET to either remove this script or disable it after you have used it.
|
||||||
|
//
|
||||||
|
die("Please read the first lines of this script for instructions on how to enable it");
|
||||||
|
|
||||||
$namespace_dir = realpath(__DIR__ . '/../phpbb/');
|
$namespace_dir = realpath(__DIR__ . '/../phpbb/');
|
||||||
$code_dir = realpath(__DIR__ . '/../');
|
$code_dir = realpath(__DIR__ . '/../');
|
||||||
|
@@ -1,4 +1,19 @@
|
|||||||
<?php
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @copyright (c) 2012 phpBB Group
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
//
|
||||||
|
// Security message:
|
||||||
|
//
|
||||||
|
// This script is potentially dangerous.
|
||||||
|
// Remove or comment the next line (die(".... ) to enable this script.
|
||||||
|
// Do NOT FORGET to either remove this script or disable it after you have used it.
|
||||||
|
//
|
||||||
|
die("Please read the first lines of this script for instructions on how to enable it");
|
||||||
|
|
||||||
$code_dir = realpath(__DIR__ . '/../');
|
$code_dir = realpath(__DIR__ . '/../');
|
||||||
$test_dir = realpath(__DIR__ . '/../../tests/');
|
$test_dir = realpath(__DIR__ . '/../../tests/');
|
||||||
|
Reference in New Issue
Block a user