1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-22 02:50:00 +01:00

Prevent upgrade being run standalone from install if PHPBB_INSTALLED present in config.

git-svn-id: file:///svn/phpbb/trunk@2088 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Paul S. Owen 2002-02-11 13:05:08 +00:00
parent d0febff388
commit 1c145bf6bd

View File

@ -29,6 +29,12 @@ if ( !defined('INSTALLING') )
include('config.'.$phpEx);
include('includes/constants.'.$phpEx);
include('includes/functions.'.$phpEx);
if( defined("PHPBB_INSTALLED") )
{
header("Location: index.$phpEx");
exit;
}
}
//