Minahito
minah****@users*****
2006年 9月 27日 (水) 16:12:42 JST
Index: xoops2jp/html/class/XCube_PageNavigator.class.php diff -u xoops2jp/html/class/XCube_PageNavigator.class.php:1.1.2.8 xoops2jp/html/class/XCube_PageNavigator.class.php:1.1.2.9 --- xoops2jp/html/class/XCube_PageNavigator.class.php:1.1.2.8 Wed Aug 9 18:31:07 2006 +++ xoops2jp/html/class/XCube_PageNavigator.class.php Wed Sep 27 16:12:42 2006 @@ -1,7 +1,7 @@ <?php /** * @package XCube - * @version $Id: XCube_PageNavigator.class.php,v 1.1.2.8 2006/08/09 09:31:07 minahito Exp $ + * @version $Id: XCube_PageNavigator.class.php,v 1.1.2.9 2006/09/27 07:12:42 minahito Exp $ */ define("XCUBE_PAGENAVI_START",1); @@ -72,7 +72,7 @@ $tarr=array(); foreach($this->mExtra as $key=>$value) { - if (is_array($mask) && !isset($mask[$key])) { + if (is_array($mask) && !in_array($key, $mask)) { $tarr[]=$key."=".urlencode($value); } } @@ -100,7 +100,7 @@ */ function getRenderUrl($mask = null) { - if ($mask != null && is_array($mask)) { + if ($mask != null && !is_array($mask)) { $mask = array($mask); }