Skip to content
Snippets Groups Projects
Commit 1b121751 authored by natrak's avatar natrak
Browse files

Think this is all of it :)

parent 92a0d43b
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
<?php
$handle=opendir('themes');
$handle = opendir('themes');
while ($file = readdir($handle)) {
if(!ereg("^\.",$file) && file_exists("themes/$file/theme.class")) $themelist .= "$file ";
if(!ereg("^\.",$file) && file_exists("themes/$file/theme.class")) $themelist[] = $file;
}
closedir($handle);
?>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment