diff options
Diffstat (limited to 'phpBB/includes/template_executor_include.php')
-rw-r--r-- | phpBB/includes/template_executor_include.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/phpBB/includes/template_executor_include.php b/phpBB/includes/template_executor_include.php index 3671265cca..aacabc61e4 100644 --- a/phpBB/includes/template_executor_include.php +++ b/phpBB/includes/template_executor_include.php @@ -1,8 +1,27 @@ <?php +/** +* +* @package phpBB3 +* @version $Id$ +* @copyright (c) 2011 phpBB Group +* @license http://opensource.org/licenses/gpl-license.php GNU Public License +* +*/ + +/** +* @ignore +*/ +if (!defined('IN_PHPBB')) +{ + exit; +} + /** * Template executor that stores path to php file with template code * and evaluates it by including the file. +* +* @package phpBB3 */ class phpbb_template_executor_include implements phpbb_template_executor { |