ソニーペイメントサービスの2つの決済モジュール

Welcart Nova 1.1.4 をリリース

Welcart Nova 1.1.4 をリリースしました。

今回の更新内容は次の通りです。

カスタムヘッダー デフォルト画像

管理画面からメイン画像を切り替えると、デフォルトのメイン画像に戻すことが出来ない

welcart_basic-nova/functions.php 20行目~
register_default_headers( array(
    'wcct-default'  => array(
        'url'   => '%s/images/image-top.jpg',
        'thumbnail_url' => '%s/images/image-top.jpg',
    )
) );
register_default_headers( array(
    'wcct-default'  => array(
        'url'   => '%2$s/images/image-top.jpg',
        'thumbnail_url' => '%2$s/images/image-top.jpg',
    )
) );

複合検索ページでサニタイズ漏れ

welcart_basic-nova/wc_templates/wc_search_page.php 20行目
<?php $uscpaged = ( isset($_REQUEST['paged']) ) ? $_REQUEST['paged'] : 1; ?>
<?php $uscpaged = ( isset($_REQUEST['paged']) ) ? (int)$_REQUEST['paged'] : 1; ?>

welcart_basic-nova/wc_templates/wc_search_page.php 108行目
<input name="paged" id="usces_paged" type="hidden" value="<?php echo $uscpaged; ?>" />
<input name="paged" id="usces_paged" type="hidden" value="<?php esc_attr_e( $uscpaged ); ?>" />