From fb1ab1ff43acbe77578b5f9e7647862f74584bfd Mon Sep 17 00:00:00 2001 From: Kanti Date: Sun, 28 Sep 2014 13:17:45 +0200 Subject: [PATCH 1/3] version 2.3 --- cache/installedVersion.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache/installedVersion.json b/cache/installedVersion.json index cd537b3..b8d8fb7 100644 --- a/cache/installedVersion.json +++ b/cache/installedVersion.json @@ -1,4 +1,4 @@ { "id": 397789, - "tag_name": "v2.2" + "tag_name": "v2.3" } From 0e2631103421d88690bcfd3b0f337d55781b231a Mon Sep 17 00:00:00 2001 From: Kanti Date: Mon, 29 Sep 2014 11:07:34 +0200 Subject: [PATCH 2/3] Bugfix: 404 Header on 404-Page not send properly --- system/includes/functions.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/system/includes/functions.php b/system/includes/functions.php index eda19a7..f0f8157 100644 --- a/system/includes/functions.php +++ b/system/includes/functions.php @@ -1192,7 +1192,9 @@ EOF; // The not found error function not_found() { - error(404, render('404', null, false)); + header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found"); + render('404', null, false); + die(); } // Turn an array of posts into an RSS feed From a8c7ccaac303ce06c46b5fa8fdee01a548a9ca25 Mon Sep 17 00:00:00 2001 From: Kanti Date: Mon, 29 Sep 2014 11:38:02 +0200 Subject: [PATCH 3/3] prepare for version 2.4 --- cache/installedVersion.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cache/installedVersion.json b/cache/installedVersion.json index b8d8fb7..d6ffdc4 100644 --- a/cache/installedVersion.json +++ b/cache/installedVersion.json @@ -1,4 +1,4 @@ { - "id": 397789, - "tag_name": "v2.3" + "id": 587750, + "tag_name": "v2.4" }