To fix the issues change the following:
unreq.php in ADMINCP
PHP Code:
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL);
Change to:
PHP Code:
// ######################## SET PHP ENVIRONMENT ###########################
error_reporting(E_ALL & ~E_NOTICE);
The error was because of notice reporting. You forgot to tell PHP not to report the notices.