aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/installation.php
diff options
context:
space:
mode:
authorthe_systech <the_systech@users.sourceforge.net>2001-10-02 14:30:15 +0000
committerthe_systech <the_systech@users.sourceforge.net>2001-10-02 14:30:15 +0000
commitba4944f1c7431f4d3895190251a40f94e14b6466 (patch)
tree2c8c4e4618817cdc8f2eb639a8a39d0792119b04 /phpBB/includes/installation.php
parent2d769f1c105ab8138d63d1877b000d0c1ae59065 (diff)
downloadforums-ba4944f1c7431f4d3895190251a40f94e14b6466.tar
forums-ba4944f1c7431f4d3895190251a40f94e14b6466.tar.gz
forums-ba4944f1c7431f4d3895190251a40f94e14b6466.tar.bz2
forums-ba4944f1c7431f4d3895190251a40f94e14b6466.tar.xz
forums-ba4944f1c7431f4d3895190251a40f94e14b6466.zip
Merge install and includes/installation, and updated error handling for config file unwritable.
git-svn-id: file:///svn/phpbb/trunk@1125 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/installation.php')
-rw-r--r--phpBB/includes/installation.php59
1 files changed, 0 insertions, 59 deletions
diff --git a/phpBB/includes/installation.php b/phpBB/includes/installation.php
deleted file mode 100644
index 93d25effa2..0000000000
--- a/phpBB/includes/installation.php
+++ /dev/null
@@ -1,59 +0,0 @@
-<?php
-/***************************************************************************
- * install.php
- * -------------------
- * begin : Tuesday, Sept 11, 2001
- * copyright : (C) 2001 The phpBB Group
- * email : supportphpbb.com
- *
- * $Id$
- *
- ***************************************************************************/
-
-/***************************************************************************
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- ***************************************************************************/
-$phpbb_root_path = '';
-//
-// Initialize a couple of needed variables. It really doesn't matter what we
-// put in userdata... It just has to be set so that message_die will work.
-// Basically all of the following variables are to setup the template engine.
-//
-$userdata = "some false data";
-$theme = array(
- 'themes_id' => '2',
- 'themes_name' => 'Default',
- 'template_name' => 'Default',
- 'td_color1' => 'CCCCCC',
- 'td_color2' => 'DDDDDD'
-);
-$default_language = 'english';
-$default_template = 'Default';
-
-$available_dbms[] = array(
- "LABEL" => "MySQL",
- "VALUE" => "mysql"
-);
-$available_dbms[] = array(
- "LABEL" => "MS SQL",
- "VALUE" => "mssql"
-);
-$available_dbms[] = array(
- "LABEL" => "Postgres",
- "VALUE" => "postgres"
-);
-$available_dbms[] = array(
- "LABEL" => "ODBC - MSAccess",
- "VALUE" => "odbc:access"
-);
-$available_dbms[] = array(
- "LABEL" => "ODBC - DB2",
- "VALUE" => "odbc:db2"
-);
-$available_lang[] = 'english';
-?>