Code: Select all
);
// Include the UMIF Auto file and everything else will be handled automatically.
include($phpbb_root_path . 'umil/umil_auto.' . $phpEx);
Code: Select all
));
// Include the UMIF Auto file and everything else will be handled automatically.
include($phpbb_root_path . 'umil/umil_auto.' . $phpEx);
is missing some lines above:),
Code: Select all
),
),
'cache_purge' => array('', 'auth', 'imageset', 'template', 'theme'),
),
// Version 1.4.1
'1.4.1' => array(
'cache_purge' => array(),
),
Code: Select all
include($phpbb_root_path . 'includes/functions_user.' . $phpEx);
user_active_flip('activate', $user_row['user_id']);
$sql = 'UPDATE ' . USERS_TABLE . "
SET user_actkey = ''
WHERE user_id = {$user_row['user_id']}";
$db->sql_query($sql);
Code: Select all
include_once($phpbb_root_path . 'includes/functions_user.' . $phpEx);
user_active_flip('activate', $user_row['user_id']);
$sql = 'UPDATE ' . USERS_TABLE . "
SET user_actkey = ''
WHERE user_id = {$user_row['user_id']}";
$db->sql_query($sql);