| commit | 50ec9ec231692510cc4ddd16cde56919b1cdbca0 | [log] [tgz] |
|---|---|---|
| author | Andy Clement <aclement@pivotal.io> | Fri Jul 22 12:53:21 2016 -0700 |
| committer | Andy Clement <aclement@pivotal.io> | Fri Jul 22 12:53:21 2016 -0700 |
| tree | bdf7d27fccedddc9a27d4e44878ae7d46752ea83 | |
| parent | b030ef5500a625794f74cba1730e85d3b0e9d5e9 [diff] |
changing regex to allow zips for 45/46 to appear
diff --git a/downloads/index.php b/downloads/index.php index 233a520..0b79f92 100644 --- a/downloads/index.php +++ b/downloads/index.php
@@ -16,7 +16,7 @@ while (false!== ($file=readdir($root))) { if($file=="." || $file=="..") {continue;} - if (preg_match('/.*ajdt-e[0-9][0-9]x-(.*).zip/',$file, $matches)) { + if (preg_match('/.*ajdt-e[0-9][0-9]x*-(.*).zip/',$file, $matches)) { $files[]="$dir/$file"; } }