id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	modified_flg
1254	SC_FormParam::getValue() の第二引数が無効	nanasess	nanasess	"従来, 使用している箇所は無いと思いますが `SC_FormParam::getValue()` の第二引数 $default が動作していない模様

is_null でチェックしているが, 前の処理で空文字を代入しているため.

{{{
        foreach($this->keyname as $val) {
            if($val == $keyname) {
                $ret = isset($this->param[$cnt]) ? $this->param[$cnt] : """";
                break;
            }
            $cnt++;
        }
        if(is_null($ret)){
            $ret = $default;
        }
}}}"	バグ指摘	closed	低	EC-CUBE2.11.1	その他	2.11.0	修正済			1
