diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-09-26 00:59:25 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-09-26 00:59:25 +0200 |
commit | 9ead28a0fe011af32b3c16e40a333c8374d6864f (patch) | |
tree | 673fe1526b38de8a943a7edc4430d90f083f09bb /phpBB/develop | |
parent | b27fc70a7d889ad9ed424666059b718eeb82cb05 (diff) | |
download | forums-9ead28a0fe011af32b3c16e40a333c8374d6864f.tar forums-9ead28a0fe011af32b3c16e40a333c8374d6864f.tar.gz forums-9ead28a0fe011af32b3c16e40a333c8374d6864f.tar.bz2 forums-9ead28a0fe011af32b3c16e40a333c8374d6864f.tar.xz forums-9ead28a0fe011af32b3c16e40a333c8374d6864f.zip |
[ticket/11866] Remove outdated and broken develop script
PHPBB3-11866
Diffstat (limited to 'phpBB/develop')
-rw-r--r-- | phpBB/develop/compile_template.php | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/phpBB/develop/compile_template.php b/phpBB/develop/compile_template.php deleted file mode 100644 index 32d1d321f1..0000000000 --- a/phpBB/develop/compile_template.php +++ /dev/null @@ -1,24 +0,0 @@ -<?php -// ------------------------------------------------------------- -// -// $Id$ -// -// FILENAME : compile_template.php -// STARTED : Sun Apr 24, 2011 -// COPYRIGHT : © 2011 phpBB Group -// WWW : http://www.phpbb.com/ -// LICENCE : GPL vs2.0 [ see /docs/COPYING ] -// -// ------------------------------------------------------------- - -define('IN_PHPBB', 1); -define('ANONYMOUS', 1); -$phpEx = substr(strrchr(__FILE__, '.'), 1); -$phpbb_root_path = './../'; - -include($phpbb_root_path . 'includes/template_compile.'.$phpEx); - -$file = $argv[1]; - -$compile = new phpbb_template_compile(false); -echo $compile->compile_file($file); |