- Timestamp:
- 2007/10/29 14:54:24 (15 years ago)
- Location:
- branches/feature-module-update
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/data/class/SC_PageNavi.php
r16585 r16586 82 82 83 83 if ($this->now_page < $this->max_page) { 84 $next=" <a href=\"". $ps . "\" onclick=\"$func_name('" . (($this->now_page) + 1) ."'); return false;\">次へ>></a>";84 $next=" <a href=\"". $ps . "\" onclick=\"$func_name('" . (($this->now_page) + 1) ."'); return false;\">次へ>></a>"; 85 85 $this->arrPagenavi['next'] = ($this->now_page) + 1; 86 86 }else{ … … 121 121 122 122 if ($i == $this->now_page) { 123 $page_number .= "<strong>$i</strong> 123 $page_number .= "<strong>$i</strong>"; 124 124 } else { 125 $page_number.="<a href=\"". $ps . "\" onclick=\"$func_name('$i'); return false;\">$i</a> 125 $page_number.="<a href=\"". $ps . "\" onclick=\"$func_name('$i'); return false;\">$i</a>"; 126 126 } 127 127 -
branches/feature-module-update/data/mtb_constants_init.php
r16537 r16586 347 347 define('SEARCH_PMAX', 10); 348 348 /** ページ番号の最大表示個数 */ 349 define('NAVI_PMAX', 5);349 define('NAVI_PMAX', 4); 350 350 /** 商品サブ情報最大数 */ 351 351 define('PRODUCTSUB_MAX', 5); -
branches/feature-module-update/html/install/sql/insert_data.sql
r16548 r16586 886 886 INSERT INTO mtb_constants VALUES ('MEMBER_PMAX','10',182,'メンバー管理ページ表示行数'); 887 887 INSERT INTO mtb_constants VALUES ('SEARCH_PMAX','10',183,'検索ページ表示行数'); 888 INSERT INTO mtb_constants VALUES ('NAVI_PMAX',' 5',184,'ページ番号の最大表示個数');888 INSERT INTO mtb_constants VALUES ('NAVI_PMAX','4',184,'ページ番号の最大表示個数'); 889 889 INSERT INTO mtb_constants VALUES ('PRODUCTSUB_MAX','5',185,'商品サブ情報最大数'); 890 890 INSERT INTO mtb_constants VALUES ('DELIVTIME_MAX','16',186,'配送時間の最大表示数'); -
branches/feature-module-update/html/user_data/templates/default/css/products.css
r16547 r16586 43 43 ul.pagenumberarea li.center { 44 44 text-align: center; 45 white-space: pre; 45 46 } 46 47
Note: See TracChangeset
for help on using the changeset viewer.