From fe09cd7496d9af46c058a5f2d352e5e4d2629b71 Mon Sep 17 00:00:00 2001 From: Bryan Pedini Date: Thu, 11 Apr 2019 12:54:14 +0200 Subject: [PATCH] Corrected error message --- lib/php/go.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/php/go.php b/lib/php/go.php index 9e0c061..9caf307 100644 --- a/lib/php/go.php +++ b/lib/php/go.php @@ -2,7 +2,7 @@ if ( isset ( $GLOBALS [ 'request_uri' ] [ 1 ] ) ) { $link_id = $GLOBALS [ 'request_uri' ] [ 1 ]; if ( ! ctype_digit ( $link_id ) ) { - die ( "You can't be forwarded to a non numerical URL link ID. If you think this is incorrect, please send an email to shorte@dev.bryanpedini.it with this URL: https://sh.bjphoster.com/?go=" . $link_id . " for more investigations" ); + die ( "You can't be forwarded to a non numerical URL link ID. If you think this is incorrect, please send an email to shorte@dev.bryanpedini.it with this URL: https://sh.bjphoster.com/go/" . $link_id . " for more investigations" ); } $link_id = (int) $link_id; $database = new Database ( $GLOBALS [ 'config' ] [ 'db' ] );