summaryrefslogtreecommitdiff
path: root/src/views/pages/users/500.html.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/pages/users/500.html.php')
-rw-r--r--src/views/pages/users/500.html.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/views/pages/users/500.html.php b/src/views/pages/users/500.html.php
deleted file mode 100644
index 339fe63..0000000
--- a/src/views/pages/users/500.html.php
+++ /dev/null
@@ -1,15 +0,0 @@
-<?php global $VARS;
-require_once('Database.class.php');
-$t = $VARS['template'];
-$db = Database::getInstance();
-
-$t->status('500 Internal Server Error');
-$t->header('Unknown error');
-$t->paragraph("An unknown error was encountered when creating ".
- "the user. The username appears to be free, and ".
- "the passwords match, so I'm assuming that the ".
- "error is on our end. Sorry.");
-$t->paragraph("Here's a dump of the SQL error stack, it may ".
- "help us find the issue:");
-$t->tag('pre', array(), htmlentities($db->mysql_error()));
-$t->footer();