aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2017-04-12 07:50:52 +0200
committerThomas Lange <code@nerdmind.de>2017-04-12 07:50:52 +0200
commit4ac3db5bbf609dfb53daed1615b00c36a6282e3e (patch)
tree1105e8f60ea230611af483f4ebd3565bf5483c4a
parent116c70e164906eab8b705e37e18791ca42777ab6 (diff)
downloadblog-4ac3db5bbf609dfb53daed1615b00c36a6282e3e.tar.gz
blog-4ac3db5bbf609dfb53daed1615b00c36a6282e3e.tar.xz
blog-4ac3db5bbf609dfb53daed1615b00c36a6282e3e.zip
The file "application.php" has been modified.
-rw-r--r--core/application.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/core/application.php b/core/application.php
index fcc1678..c1717a6 100644
--- a/core/application.php
+++ b/core/application.php
@@ -126,8 +126,7 @@ if(Application::get('CORE.SEND_304') === TRUE AND !defined('ADMINISTRATION')) {
$HTTP_IF_NONE_MATCH = rtrim($HTTP_IF_NONE_MATCH, '-gzip');
if($HTTP_IF_NONE_MATCH === $HTTP_ETAG_IDENTIFIER) {
- http_response_code(304);
- exit();
+ Application::exit(NULL, 304);
}
}
}