aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install.php
diff options
context:
space:
mode:
authorJames Atkinson <thefinn@users.sourceforge.net>2003-01-30 20:06:17 +0000
committerJames Atkinson <thefinn@users.sourceforge.net>2003-01-30 20:06:17 +0000
commitb1d7522d06f8b8d583629db3922159f7552d66f0 (patch)
tree70bcd58c40de8543d5e3946dddd5cb985e65f558 /phpBB/install/install.php
parent3730697f18f627819448fc54e024cdc0466246f5 (diff)
downloadforums-b1d7522d06f8b8d583629db3922159f7552d66f0.tar
forums-b1d7522d06f8b8d583629db3922159f7552d66f0.tar.gz
forums-b1d7522d06f8b8d583629db3922159f7552d66f0.tar.bz2
forums-b1d7522d06f8b8d583629db3922159f7552d66f0.tar.xz
forums-b1d7522d06f8b8d583629db3922159f7552d66f0.zip
Minor changes, added visual confirmation stuff to mysql_basic and changed
user_avatar_type to null since avatars arn't used in registartion. git-svn-id: file:///svn/phpbb/trunk@3433 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/install.php')
-rw-r--r--phpBB/install/install.php8
1 files changed, 5 insertions, 3 deletions
diff --git a/phpBB/install/install.php b/phpBB/install/install.php
index ef975423e2..f26b961afa 100644
--- a/phpBB/install/install.php
+++ b/phpBB/install/install.php
@@ -555,6 +555,7 @@ else
{
if ( $dbms != 'msaccess' )
{
+
//
// Ok we have the db info go ahead and read in the relevant schema
// and work on building the table.. probably ought to provide some
@@ -698,7 +699,7 @@ else
@umask(0111);
$no_open = FALSE;
- if ( !($fp = @fopen('../config.'.$phpEx, 'w')) )
+ if ( !($fp = fopen('../config.'.$phpEx, 'w')) )
{
//
// Unable to open the file writeable do something here as an attempt
@@ -747,7 +748,7 @@ else
);
}
- $template->assign_vars(array(
+ /*$template->assign_vars(array(
"L_INSTRUCTION_TEXT" => $lang['Unwriteable_config'],
"L_SUBMIT" => $lang['Download_config'],
@@ -756,7 +757,8 @@ else
);
$template->pparse('body');
-
+ */
+
exit;
}