catlist標(biāo)簽 limit屬性 小bug
經(jīng)測試 如果 catlist標(biāo)簽里使用 limit='記錄開始處,要取得的記錄數(shù)',如果“開始處”為0,則會(huì)取不到數(shù)據(jù);
調(diào)整方案:yang.class.php
/*************************************/
\$_typeid = intval($typeid);
\$_type = "$type";
\$_temp = explode(',', "$limit");
\$_temp[0] = \$_temp[0] >0? \$_temp[0] : 10;
if (isset(\$_temp[1]) && intval(\$_temp[1]) > 0) {
\$_limit[0] = \$_temp[0];
\$_limit[1] = intval(\$_temp[1]);
}else {
\$_limit[0] = 0;
\$_limit[1] = \$_temp[0];
}
將紅色部分里的“>”改為 ">="
其它標(biāo)簽如果 limit 出現(xiàn)此情況 ,可在yang.class.php對應(yīng)的標(biāo)簽處修改即可