Changeset 16515
- Timestamp:
- 05/30/08 17:56:50 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/midcom/midcom.core/midcom/services/cache/backend/flatfile.php
r15892 r16515 114 114 } 115 115 116 try { 116 // Note: try below failed for some reason, checking manually if the file exists instead 117 if (!file_exists("{$this->_dirname}{$key}")) 118 { 119 return; 120 } 121 122 try 123 { 117 124 unlink("{$this->_dirname}{$key}"); 118 125 } 119 126 catch(Exception $e) 120 127 { 121 /* Do nothing, be qui te*/128 /* Do nothing, be quiet */ 122 129 } 123 130 }
