mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 05:50:42 +02:00
- add some language variables i will need at another location. ;)
- also add X-Sendfile support to the download.php file. git-svn-id: file:///svn/phpbb/trunk@6308 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -173,7 +173,7 @@ set_error_handler('msg_handler');
|
||||
$user = new user();
|
||||
$auth = new auth();
|
||||
$cache = new cache();
|
||||
$template = new Template();
|
||||
$template = new template();
|
||||
|
||||
$template->set_custom_template('../adm/style', 'admin');
|
||||
$template->assign_var('T_TEMPLATE_PATH', '../adm/style');
|
||||
@@ -212,7 +212,7 @@ class module
|
||||
*/
|
||||
function create($module_type, $module_url, $selected_mod = false, $selected_submod = false)
|
||||
{
|
||||
global $db, $config, $phpEx;
|
||||
global $db, $config, $phpEx, $phpbb_root_path;
|
||||
|
||||
$module = array();
|
||||
|
||||
@@ -285,10 +285,9 @@ class module
|
||||
$this->mode = $mode;
|
||||
}
|
||||
|
||||
/**
|
||||
* @todo this could be written as $this->module = new $this->filename($this); ... no? (eval statement in install/index.php)
|
||||
*/
|
||||
eval("\$this->module = new $this->filename(\$this);");
|
||||
$module = $this->filename;
|
||||
$this->module = new $module($this);
|
||||
|
||||
if (method_exists($this->module, 'main'))
|
||||
{
|
||||
$this->module->main($this->mode, $this->sub);
|
||||
|
@@ -19,6 +19,19 @@ if ( !defined('IN_INSTALL') )
|
||||
|
||||
if (!empty($setmodules))
|
||||
{
|
||||
/* If phpBB is already installed we do not include this module
|
||||
// This does not work at the moment because on installation the config file will be written before
|
||||
// everything is finished.
|
||||
if (@file_exists($phpbb_root_path . 'config.' . $phpEx))
|
||||
{
|
||||
include_once($phpbb_root_path . 'config.' . $phpEx);
|
||||
|
||||
if (defined('PHPBB_INSTALLED'))
|
||||
{
|
||||
return;
|
||||
}
|
||||
}*/
|
||||
|
||||
$module[] = array(
|
||||
'module_type' => 'install',
|
||||
'module_title' => 'INSTALL',
|
||||
@@ -748,9 +761,9 @@ class install_install extends module
|
||||
// $config_data .= "\$acm_type = '" . (($acm_type) ? $acm_type : 'file') . "';\n";
|
||||
$config_data .= "\$acm_type = 'file';\n";
|
||||
$config_data .= "\$load_extensions = '$load_extensions';\n\n";
|
||||
$config_data .= "define('PHPBB_INSTALLED', true);\n";
|
||||
$config_data .= "define('DEBUG', true);\n"; // @todo Comment out when final
|
||||
$config_data .= "define('DEBUG_EXTRA', true);\n"; // @todo Comment out when final
|
||||
$config_data .= "@define('PHPBB_INSTALLED', true);\n";
|
||||
$config_data .= "@define('DEBUG', true);\n"; // @todo Comment out when final
|
||||
$config_data .= "@define('DEBUG_EXTRA', true);\n"; // @todo Comment out when final
|
||||
$config_data .= '?' . '>'; // Done this to prevent highlighting editors getting confused!
|
||||
|
||||
// Attempt to write out the config file directly. If it works, this is the easiest way to do it ...
|
||||
@@ -927,6 +940,7 @@ class install_install extends module
|
||||
global $db, $lang, $template, $phpbb_root_path, $phpEx;
|
||||
|
||||
$this->page_title = $lang['STAGE_CREATE_TABLE'];
|
||||
$s_hidden_fields = '';
|
||||
|
||||
// Obtain any submitted data
|
||||
foreach ($this->request_vars as $var)
|
||||
|
@@ -205,7 +205,7 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page',
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('tpl_allow_php', '0');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_icons_path', 'images/upload_icons');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('upload_path', 'files');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.B2');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('version', '3.0.B3-dev');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_expire_days', '90');
|
||||
INSERT INTO phpbb_config (config_name, config_value) VALUES ('warnings_gc', '14400');
|
||||
|
||||
|
Reference in New Issue
Block a user