There it is the DB maintenance script:
-
<?php
-
/**
-
*
-
* @package Icy Phoenix
-
* @version $Id: admin_db_maintenance.php 80 2009-02-19 13:45:54Z Mighty Gorgon $
-
* @copyright (c) 2008 Icy Phoenix
-
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
-
*
-
*/
-
-
/**
-
*
-
* @Extra credits for this file
-
* Philipp Kordowich
-
*
-
*/
-
-
// CTracker_Ignore: File checked by human
-
define('IN_ICYPHOENIX', true);
-
-
// Mighty Gorgon - ACP Privacy - BEGIN
-
if (function_exists('check_acp_module_access'))
-
{
-
$is_allowed = check_acp_module_access();
-
if ($is_allowed == false)
-
{
-
return;
-
}
-
}
-
// Mighty Gorgon - ACP Privacy - END
-
-
if (!empty($setmodules))
-
{
-
$filename = basename(__FILE__);
-
$module['1400_DB_Maintenance']['150_DB_Maintenance'] = $filename;
-
$ja_module['1400_DB_Maintenance']['150_DB_Maintenance'] = false;
-
return;
-
}
I guess it is cased by this piece of code before setting the lang for the ACP dropdown menu:
- // Mighty Gorgon - ACP Privacy - BEGIN
- if (function_exists('check_acp_module_access'))
- {
- $is_allowed = check_acp_module_access();
- if ($is_allowed == false)
- {
- return;
- }
- }
- // Mighty Gorgon - ACP Privacy - END
Perhaps wiping that solves the problem