Ticket #31: install_svn.php.diff
| File install_svn.php.diff, 0.7 KB (added by jceh, 6 years ago) |
|---|
-
home/johnny/public_html/phpbms/install/install.php
37 37 function showModules(){ 38 38 $thedir= @ opendir("../modules/"); 39 39 while($entry=readdir($thedir)) 40 if($entry!="base" and $entry!="." and $entry !=".." and is_dir("../modules/".$entry) )40 if($entry!="base" and $entry!="." and $entry !=".." and is_dir("../modules/".$entry) and $entry!=".svn") 41 41 echo "<option value=\"".$entry."\">".$entry."</option>"; 42 42 43 43 }