Kód:
#################################################################
## Mod Title: Auto Activate Main Admin Account
## Mod Version: 1.0.0
## Author: RL < RometL@hot.ee >
## Description: This mod will activate main admin account if it`s not active.
##
## Installation Level: easy
## Installation Time: 2 Minutes
## Files To Edit: common.php
##
#################################################################
## Security Disclaimer: This MOD Cannot Be Posted To Or Added At Any Non-Official phpBB Sites
#################################################################
##
## Author Note:
## None.
##
#################################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
#################################################################
#
#-----[ OPEN ]------------------------------------------
#
/common.php
#
#-----[ FIND ]------------------------------------------
#
//
// Show 'Board is disabled' message if needed.
//
if( $board_config['board_disable'] && !defined("IN_ADMIN") && !defined("IN_LOGIN") )
{
message_die(GENERAL_MESSAGE, 'Board_disable', 'Information');
}
#
#-----[ AFTER, ADD ]------------------------------------------
#
//
// Activate Main Admin Account
//
$sql = "UPDATE " . USERS_TABLE . "
SET user_active = 1
WHERE user_id = 2";
if (!$db->sql_query($sql))
{
message_die(GENERAL_MESSAGE, 'Unable to access the Users Table.');
}
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM