Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r63887 - website/public_html/beta/common/code
From: daniel_james_at_[hidden]
Date: 2010-07-11 13:49:22


Author: danieljames
Date: 2010-07-11 13:49:21 EDT (Sun, 11 Jul 2010)
New Revision: 63887
URL: http://svn.boost.org/trac/boost/changeset/63887

Log:
Some fixes.
Text files modified:
   website/public_html/beta/common/code/boost_archive.php | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: website/public_html/beta/common/code/boost_archive.php
==============================================================================
--- website/public_html/beta/common/code/boost_archive.php (original)
+++ website/public_html/beta/common/code/boost_archive.php 2010-07-11 13:49:21 EDT (Sun, 11 Jul 2010)
@@ -91,7 +91,7 @@
         return;
     }
 
- $last_modified = max(strtotime("11 July 2010"),
+ $last_modified = max(strtotime("11 July 2010 18:45:00"),
         filemtime($params['archive']));
 
     if (!conditional_get($last_modified))
@@ -152,11 +152,11 @@
 
     if(isset($_SERVER['HTTP_IF_NONE_MATCH'])) {
         $checked = true;
- if(stripslashes($_SERVER['HTTP_IF_NONE_MATCH'] != $etag)
+ if(stripslashes($_SERVER['HTTP_IF_NONE_MATCH'] != $etag))
             return true;
     }
     
- if(!$matched) return true;
+ if(!$checked) return true;
     
     header('HTTP/1.0 304 Not Modified');
     return false;


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk