<?php
/*================================================= =====================*\
|| ################################################## ################## ||
|| # vBulletin 3.5.4 - Licence Number [Removed]
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000-2006 Jelsoft Enterprises Ltd. All Rights Reserved. ||
|| # This file may not be redistributed in whole or significant part. # ||
|| # ---------------- VBULLETIN IS NOT FREE SOFTWARE ---------------- # ||
|| #
http://www.vbulletin.com |
http://www.vbulletin.com/license.html # ||
|| ################################################## ################## ||
\*================================================ ======================*/
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
if (VB_AREA !== 'Upgrade' AND VB_AREA !== 'Install')
{
exit;
}
// ##################### DEFINE IMPORTANT CONSTANTS #######################
/**
* @ignore
*/
define('CUSTOMER_NUMBER', trim(strtoupper('*******[Removed]******'))); <== line 25
// ################################################## ######################
// ######################### START MAIN SCRIPT ############################
// ################################################## ######################
if ($_POST['do'] == 'login')
{
$vbulletin->input->clean_array_gpc('p', array(
'customerid' => TYPE_STR,
'redirect' => TYPE_STR,
));
if (strtoupper($vbulletin->GPC['customerid']) == CUSTOMER_NUMBER)