Updated staff client archive to show 2.1 releases and removed 1.6 listing.
authorAnoop Atre <anoop@atreya.net>
Thu, 17 Nov 2011 19:26:34 +0000 (13:26 -0600)
committerAnoop Atre <anoop@atreya.net>
Thu, 17 Nov 2011 19:26:34 +0000 (13:26 -0600)
staff_clients.php

index 105f4c5..82b2e63 100644 (file)
 <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.0</h2>
+<h2>2.1</h2>
 
 <?php
 $fdir = "downloads/";
-$globarray = glob($fdir . "evergreen-setup-rel_2_0_*.exe");
+$globarray = glob($fdir . "evergreen-setup-rel_2_1_*.exe");
 usort($globarray, create_function('$a,$b', 'return filemtime($b) - filemtime($a);'));
 echo "<ul class='bullet'>";
 foreach($globarray as $filename) {
@@ -32,10 +32,10 @@ echo "</ul>";
 ?>
 
 <a name="161"></a>
-<h2>1.6.1</h2>
+<h2>2.0</h2>
 <?php
 $fdir = "downloads/";
-$globarray = glob($fdir . "evergreen-setup-rel_1_6_1_*.exe");
+$globarray = glob($fdir . "evergreen-setup-rel_2_0_*.exe");
 usort($globarray, create_function('$a,$b', 'return filemtime($b) - filemtime($a);'));
 echo "<ul class='bullet'>";
 foreach($globarray as $filename) {