$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r62278 - in website/public_html/beta: common/code feed/downloads
From: daniel_james_at_[hidden]
Date: 2010-05-27 17:01:26
Author: danieljames
Date: 2010-05-27 17:01:25 EDT (Thu, 27 May 2010)
New Revision: 62278
URL: http://svn.boost.org/trac/boost/changeset/62278
Log:
Fix bad merge.
Added:
   website/public_html/beta/feed/downloads/bjam_3_1_18.qbk
      - copied unchanged from r62274, /website/public_html/live/feed/downloads/bjam_3_1_18.qbk
Text files modified: 
   website/public_html/beta/common/code/boost_archive.php |    13 +++++++++++++                           
   1 files changed, 13 insertions(+), 0 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-05-27 17:01:25 EDT (Thu, 27 May 2010)
@@ -79,6 +79,19 @@
         return;
     }
 
+    // Check zipfile.
+
+    if (!is_file($archive_location_details['archive'])) {
+        file_not_found($archive_location_details['file'],
+            'Unable to find zipfile.');
+        return;        
+    }
+
+    header('last-modified:'. date(DATE_RFC2822,
+        filemtime($archive_location_details['archive'])));
+
+    // Extract the file from the zipfile
+
     $unzip =
       UNZIP
       .' -p '.escapeshellarg($archive_location_details['archive'])