Changeset 540 for trunk/admin
- Timestamp:
- Oct 3, 2004, 12:59:03 AM (20 years ago)
- Location:
- trunk/admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/create_listing_file.php
r538 r540 259 259 if ($file != '.' 260 260 and $file != '..' 261 and is_dir ($basedir.'/'.$file) 262 and $file != 'thumbnail') 261 and $file != 'thumbnail' 262 and $file != 'high' 263 and $file != 'representative' 264 and is_dir ($basedir.'/'.$file)) 263 265 { 264 266 array_push($fs_dirs, $file); -
trunk/admin/include/functions.php
r523 r540 741 741 * returns an array containing sub-directories which can be a category 742 742 * 743 * directories nammed "thumbnail" are omitted743 * directories nammed "thumbnail", "high" or "representative" are omitted 744 744 * 745 745 * @param string $basedir … … 754 754 while ( $file = readdir( $opendir ) ) 755 755 { 756 if ( $file != '.' and $file != '..' 757 and is_dir( $basedir.'/'.$file ) 758 and $file != 'thumbnail' ) 756 if ($file != '.' 757 and $file != '..' 758 and $file != 'thumbnail' 759 and $file != 'high' 760 and $file != 'representative' 761 and is_dir($basedir.'/'.$file)) 759 762 { 760 763 array_push( $sub_dirs, $file );
Note: See TracChangeset
for help on using the changeset viewer.