contents of zip

This commit is contained in:
transatoshi
2024-12-20 18:08:44 -08:00
parent aeb2b99db7
commit f03ed73d2b
261 changed files with 208197 additions and 0 deletions

23
errors/404.html Executable file
View File

@@ -0,0 +1,23 @@
<?php
// Included files
require_once __DIR__ . "/../backend/common.php";
require_once __DIR__ . "/../backend/language.php";
// Main function
// Set error header
header($_SERVER["SERVER_PROTOCOL"] . " 404 Not Found");
header("Status: 404 Not Found");
// Set title, title argument, error, error argument, and message
$title = getDefaultTranslation('MWC Wallet — Error %1$s');
$titleArgument = 404;
$error = getDefaultTranslation('Error %1$s');
$errorArgument = 404;
$message = getDefaultTranslation('Not Found');
// Require template
require __DIR__ . "/template.php";
?>