Minahito
minah****@users*****
2006年 10月 16日 (月) 16:38:16 JST
Index: xoops2jp/html/core/XCube_FormFile.class.php diff -u xoops2jp/html/core/XCube_FormFile.class.php:1.1.2.1 xoops2jp/html/core/XCube_FormFile.class.php:1.1.2.2 --- xoops2jp/html/core/XCube_FormFile.class.php:1.1.2.1 Fri Sep 29 17:13:22 2006 +++ xoops2jp/html/core/XCube_FormFile.class.php Mon Oct 16 16:38:16 2006 @@ -1,7 +1,7 @@ <?php /** * @package XCube - * @version $Id: XCube_FormFile.class.php,v 1.1.2.1 2006/09/29 08:13:22 minahito Exp $ + * @version $Id: XCube_FormFile.class.php,v 1.1.2.2 2006/10/16 07:38:16 minahito Exp $ */ /** @@ -103,8 +103,9 @@ { $ret = null; $filename=$this->getFileName(); - if(preg_match("/\.(\w+)$/",$filename,$match)) + if (preg_match("/\.([a-z\.]+)$/", $filename, $match)) { $ret=$match[1]; + } return $ret; }