Response message updates, language fixes.

This commit is contained in:
Nate Jones
2014-02-21 03:56:30 +00:00
parent be84f215c0
commit 64eaa447c8
6 changed files with 73 additions and 71 deletions
@@ -34,6 +34,12 @@ else {
exit;
}
//add multi-lingual support
require_once "app_languages.php";
foreach($text as $key => $value) {
$text[$key] = $value[$_SESSION['domain']['language']['code']];
}
if (count($_GET)>0) {
$id = check_str($_GET["id"]);
}
@@ -86,13 +92,9 @@ if (strlen($id)>0) {
$_SESSION["reload_xml"] = true;
}
//redirect the user
require_once "resources/header.php";
echo "<meta http-equiv=\"refresh\" content=\"2;url=conference_centers.php\">\n";
echo "<div align='center'>\n";
echo "Delete Complete\n";
echo "</div>\n";
require_once "resources/footer.php";
return;
$_SESSION["message"] = $text['message-delete'];
header("Location: conference_centers.php");
return;
?>