mcramer
2012-09-13 65ea2ecf27418feaf7681a02d74168d0d82626fb
interface/web/mail/webmailer.php
@@ -38,13 +38,13 @@
if (!isset($_GET['id'])){
    die ("No E-Mail selected!");
}
$emailId = intval($_GET['id']);
$emailId = $app->functions->intval($_GET['id']);
/*
 * Get the data to connect to the database
 */
$dbData = $app->db->queryOneRecord("SELECT server_id FROM mail_user WHERE mailuser_id = " . $emailId);
$serverId = intval($dbData['server_id']);
$serverId = $app->functions->intval($dbData['server_id']);
if ($serverId == 0){
    die ("No E-Mail - Server found!");
}