Update staff client archive to remove 2.0 and add 2.2
authorBen Shum <bshum@biblio.org>
Fri, 10 Aug 2012 03:46:38 +0000 (23:46 -0400)
committerBen Shum <bshum@biblio.org>
Fri, 10 Aug 2012 03:46:38 +0000 (23:46 -0400)
Signed-off-by: Ben Shum <bshum@biblio.org>
staff_clients.php

index 53f470c..67e5b9d 100644 (file)
 <div id="pagebody">
 <h1>Staff Client Archive</h1>
 <p>Slightly older versions of Windows staff client installers that correspond to previous releases of the currently supported stable Evergreen series.</p>
-<a name="200"></a>
-<h2>2.1</h2>
+<a name="220"></a>
+<h2>2.2</h2>
 
 <?php
 $fdir = "downloads/";
-$globarray = glob($fdir . "evergreen-setup-2.1.*.exe");
+$globarray = glob($fdir . "evergreen-setup-2.2.*.exe");
 usort($globarray, create_function('$a,$b', 'return filemtime($b) - filemtime($a);'));
 echo "<ul class='bullet'>";
 foreach($globarray as $filename) {
@@ -31,11 +31,11 @@ foreach($globarray as $filename) {
 echo "</ul>";
 ?>
 
-<a name="161"></a>
-<h2>2.0</h2>
+<a name="210"></a>
+<h2>2.1</h2>
 <?php
 $fdir = "downloads/";
-$globarray = glob($fdir . "evergreen-setup-rel_2_0_*.exe");
+$globarray = glob($fdir . "evergreen-setup-2.1.*.exe");
 usort($globarray, create_function('$a,$b', 'return filemtime($b) - filemtime($a);'));
 echo "<ul class='bullet'>";
 foreach($globarray as $filename) {