From 0ce4b7c0810021c6bfa793c66fa8e1b0c71f4e44 Mon Sep 17 00:00:00 2001 From: pezcurrel Date: Thu, 24 Oct 2024 08:20:46 +0200 Subject: [PATCH] =?UTF-8?q?Added=20the=20possibility=20to=20turn=20on=20?= =?UTF-8?q?=E2=80=9Cdebugging=E2=80=9D=20with=20=E2=80=9Cdebug=3D1?= =?UTF-8?q?=E2=80=9D=20GET=20parameter?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index ae038e2..7a9a4ce 100644 --- a/index.php +++ b/index.php @@ -17,7 +17,7 @@ // Logorrh, Verbose, Charliero, Tashugo? -$dodebug=false; +(isset($_GET['debug']) && $_GET['debug']=='1') ? $dodebug=true : $dodebug=false; $debug=''; require 'lib/gettlds.php';