Revision: 1551 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1551&view=re... Author: any0n3 Date: 2010-09-04 20:25:23 +0000 (Sat, 04 Sep 2010)
Log Message: ----------- This time god blessed me and helped me to fix these bugs, so it's working now. :-)
Modified Paths: -------------- www/staging/content/downloads.html
Modified: www/staging/content/downloads.html =================================================================== --- www/staging/content/downloads.html 2010-09-04 20:14:11 UTC (rev 1550) +++ www/staging/content/downloads.html 2010-09-04 20:25:23 UTC (rev 1551) @@ -2,7 +2,7 @@ <?php $dir = "./geany-plugins/";
- if($handle = opendir('geany-plugins') && is_dir($dir)) +if($handle = opendir('geany-plugins')) {
$versions = Array(); @@ -51,6 +51,8 @@ echo "</tr>"; }
+ + if(file_exists($dir . "geany-plugins-" . $version . ".exe") && file_exists($dir . "geany-plugins-" . $version . ".exe.sig")) { @@ -59,8 +61,10 @@ echo " <td><a href="./geany-plugins/geany-plugins-" .$version . ".exe">Download</a></td>"; echo " <td><a href="./geany-plugins/geany-plugins-" .$version . ".exe.sig">SIG</a></td>"; echo "</tr>"; - echo "</table>"; } + + echo "</table>"; + echo "<br /><a href="./geany-plugins">Older versions of Geany-Plugins can be downloaded</a>."; } else { echo "No plugins available at the moment.";
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.