From 386615976ecc38d60930465d2a805c3a1ac9f3bb Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Sun, 8 Apr 2018 16:37:33 -0600 Subject: [PATCH 1/2] Remove test page --- pages.php | 5 ----- pages/test.php | 1 - 2 files changed, 6 deletions(-) delete mode 100644 pages/test.php diff --git a/pages.php b/pages.php index e44646b..c2a1cdb 100644 --- a/pages.php +++ b/pages.php @@ -7,11 +7,6 @@ define("PAGES", [ "navbar" => true, "icon" => "fas fa-home" ], - "test" => [ - "title" => "test", - "navbar" => true, - "icon" => "fas fa-terminal" - ], "404" => [ "title" => "404 error" ] diff --git a/pages/test.php b/pages/test.php deleted file mode 100644 index 5198ff9..0000000 --- a/pages/test.php +++ /dev/null @@ -1 +0,0 @@ -

Test Page

\ No newline at end of file From 814c0dbc0fa23ba0f8ecb0436319dd548841bf64 Mon Sep 17 00:00:00 2001 From: Skylar Ittner Date: Sun, 8 Apr 2018 16:37:46 -0600 Subject: [PATCH 2/2] Fix URL --- lib/iputils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/iputils.php b/lib/iputils.php index f46c89f..2d03e9a 100644 --- a/lib/iputils.php +++ b/lib/iputils.php @@ -25,7 +25,7 @@ function ip4_in_cidr($ip, $cidr) { * @param string $ip IP to check in IPV6 format * @param string $cidr CIDR netmask * @return boolean true if the IP is in this range, false otherwise. - * @author MW. + * @author MW. */ function ip6_in_cidr($ip, $cidr) { $address = inet_pton($ip);