Changeset 9876
- Timestamp:
- 11/11/08 15:43:19 (2 months ago)
- Files:
-
- trunk/jaws/html/include/Jaws/Utils.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/jaws/html/include/Jaws/Utils.php
r9686 r9876 271 271 function Delete($path, $dirs_include = true, $self_include = true) 272 272 { 273 if(!file_exists($path)) return false; 274 if(is_file($path) || is_link($path)) { 275 273 if (!file_exists($path)) { 274 return true; 275 } 276 277 if (is_file($path) || is_link($path)) { 276 278 // unlink can't delete read-only files in windows os 277 279 if (JAWS_OS_WIN) {
