Adding new features. Preparing Alpha.

This commit is contained in:
orynider
2020-12-23 03:18:48 +02:00
parent 47687db35e
commit 9124c6b305
316 changed files with 34792 additions and 1152 deletions

View File

@@ -46,11 +46,9 @@ class ExceptionDisplay extends ExceptionFatal
*/
public function __toString()
{
global $words;
$str = '<table><tr class="paragraph"><td class="autoindex_td" style="padding: 8px;">'
. $this -> message . '<p><a class="autoindex_a" href="'
. Url::html_output($_SERVER['PHP_SELF']);
if (isset($_GET['dir']))
global $words, $_SERVER, $_GET;
$str = '<table><tr class="paragraph"><td class="autoindex_td" style="padding: 8px;">' . $this -> message . '<p><a class="autoindex_a" href="' . Url::html_output($_SERVER['PHP_SELF']);
if (!empty($_GET['dir']))
{
$str .= '?dir=' . Url::translate_uri($_GET['dir']);
}