[Phpfreechat-svn] SF.net SVN: phpfreechat: [737] trunk/src/containers/file.class.php
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2006-09-08 20:53:37
|
Revision: 737 http://svn.sourceforge.net/phpfreechat/?rev=737&view=rev Author: kerphi Date: 2006-09-08 13:53:29 -0700 (Fri, 08 Sep 2006) Log Message: ----------- code cleaning Modified Paths: -------------- trunk/src/containers/file.class.php Modified: trunk/src/containers/file.class.php =================================================================== --- trunk/src/containers/file.class.php 2006-09-06 06:53:04 UTC (rev 736) +++ trunk/src/containers/file.class.php 2006-09-08 20:53:29 UTC (rev 737) @@ -671,7 +671,8 @@ $ret = @unlink($filename); // remove the cached data - unset($this->_meta[$enc_type][$enc_subtype][$enc_key]); + if (isset($this->_meta[$enc_type][$enc_subtype][$enc_key])) + unset($this->_meta[$enc_type][$enc_subtype][$enc_key]); } return $ret; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |