LifeType 中文開發論壇

開發 => 核心補強 => 主題作者是: magicbug 於 四月 10, 2006, 08:44:47 上午



主題: 在\class\file\fileuploads.class.php中发现一个小错误
作者: magicbug四月 10, 2006, 08:44:47 上午
lt1.0.3
\class\file\fileuploads.class.php line 50
code: if( $destinationFolder[strlen($destinationFolder-1)] != "/" )
当admin自定义tmp目录时,有人就可能会写成"d:/tmp"(比如我),这样目录最后没有“/",上面的代码试图在最后面帮你加上"/",但语句写错了,没有正确帮你修正,造成的后果是所有用户想上传文件,全报错,应该是开发人员一时手误,:)
正确的应该是 if( $destinationFolder[strlen($destinationFolder)-1] != "/" )。
查错花了我半个小时。。。已经report了。


主題: Re: 在\class\file\fileuploads.class.php中发现一个小错误
作者: markwu四月 10, 2006, 06:35:28 下午
謝謝!已經在 SVN 中修復了!

Mark