From e9a35a080381a2a737f43e75fcd5489816076a10 Mon Sep 17 00:00:00 2001 From: Sergey Chernyshev Date: Thu, 28 Jul 2011 09:27:43 -0300 Subject: [PATCH] Formatting to make code more readable --- details/index.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/details/index.php b/details/index.php index bea5074..2055cba 100644 --- a/details/index.php +++ b/details/index.php @@ -77,7 +77,9 @@ header('Last-modified: '.date(DATE_RFC2822, $lastupdate)); -if (array_key_exists('HTTP_IF_MODIFIED_SINCE', $_SERVER) && ($lastupdate <= strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']))) { +if (array_key_exists('HTTP_IF_MODIFIED_SINCE', $_SERVER) && + ($lastupdate <= strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE'])) +) { header('HTTP/1.0 304 Not Modified'); exit; }