Changeset 90b1cb2 in github
- Timestamp:
- Nov 17, 2009 2:33:23 PM (4 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- bc04a7e
- Parents:
- 251cac2
- Files:
-
- 2 edited
-
CHANGELOG (modified) (1 diff)
-
program/steps/settings/func.inc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
CHANGELOG
r18153ef r90b1cb2 2 2 =========================== 3 3 4 - Fix displaying of hidden directories in skins list (#1486301) 5 - Fix open_basedir restriction error when reading skins list (#1486304) 4 6 - Fix pasting from Office apps into html editor (#1486271) 5 7 - Fix empty <A> tags parsing (#1486272) -
program/steps/settings/func.inc
r655bd9a r90b1cb2 641 641 { 642 642 $filename = $path.'/'.$file; 643 if (is_dir($filename) && is_readable($filename) 644 && !in_array($file, array('.', '..', '.svn'))) 643 if (!preg_match('/^\./', $file) && is_dir($filename) && is_readable($filename)) 645 644 $skins[] = $file; 646 645 }
Note: See TracChangeset
for help on using the changeset viewer.
