mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
a lot of handwork is still required...
git-svn-id: file:///svn/phpbb/trunk@4629 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -30,6 +30,13 @@ $ext = 'html';
|
||||
$store_dir = '../store/';
|
||||
|
||||
$phpfiles_directories = array('../', '../includes/', '../includes/acm/', '../includes/auth/', '../includes/mcp/', '../includes/ucp/');
|
||||
// Template Files beginning with this names are merged together
|
||||
$merge = array('gcp', 'login', 'mcp', 'memberlist', 'posting', 'ucp');
|
||||
|
||||
if (!is_writable($store_dir))
|
||||
{
|
||||
die("Directory $store_dir is not writeable!");
|
||||
}
|
||||
|
||||
$contents = implode('', file('../adm/subSilver.css', filesize('../adm/subSilver.css')));
|
||||
$fp = fopen($store_dir . 'subSilver.css', 'w');
|
||||
@@ -88,6 +95,7 @@ $html_skeleton .= '
|
||||
|
||||
// Open Language File
|
||||
include('../language/en/lang_main.php');
|
||||
include('../language/en/lang_admin.php');
|
||||
|
||||
$files_to_parse = $php_files = array();
|
||||
|
||||
@@ -413,7 +421,6 @@ fclose($fp);
|
||||
// Not only write down all language files, place them into a specific array, named by the template file
|
||||
// All Language vars assigned to more than one template will be placed into a common file
|
||||
$entry = array();
|
||||
$merge = array('gcp', 'login', 'mcp', 'memberlist', 'posting', 'ucp');
|
||||
$common_fp = fopen($store_dir . 'lang_common.php', 'w');
|
||||
fwrite($common_fp, "<?php\n\n \$lang = array(\n");
|
||||
|
||||
|
Reference in New Issue
Block a user