summaryrefslogtreecommitdiff
path: root/themes/list.php
blob: 99ad96aaeefb52ce30878466a2f450e1d348c6bb (plain)
1
2
3
4
5
6
7
<?php
 $handle=opendir('themes');
 while ($file = readdir($handle)) {
   if(!ereg("[.]",$file)) $themelist .= "$file ";
 }
 closedir($handle);
?>