Multilinquified core/apps. App Edit and Delete buttons hidden (for now, at least).

This commit is contained in:
Nate Jones
2013-05-15 02:19:44 +00:00
parent 4c142bb790
commit b207aa26db
4 changed files with 133 additions and 26 deletions

View File

@@ -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"]);
}
@@ -82,12 +88,12 @@ if (strlen($id)>0) {
}
}
}
//redirect the browser
require_once "includes/header.php";
echo "<meta http-equiv=\"refresh\" content=\"2;url=apps.php\">\n";
echo "<div align='center'>\n";
echo "Delete Complete\n";
echo $text['message-delete']."\n";
echo "</div>\n";
require_once "includes/footer.php";
return;