place the following code in a file, call it something like langfix.php, upload it to the same place where config.php is and then point your browser to it.
Code:
<?php
#####################################################
#####################################################
require("config.php");
$host = $dbhost;
$database = $dbname;
$username = $dbuname;
$password = $dbpass;
mysql_connect($host, $username, $password);
@mysql_select_db($database);
################### BEGIN THE FIX ###################
mysql_query("update ".$prefix."_config set language='english'");
?>