Plugin Directory

Changeset 2612060


Ignore:
Timestamp:
10/10/2021 01:18:25 PM (4 years ago)
Author:
J4cob
Message:
  • Fix - Customizer PHP8 conflict.
Location:
wp-bottom-menu
Files:
31 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-bottom-menu/trunk/inc/page-control/page-control.php

    r2558230 r2612060  
    3737                <?php
    3838                foreach ( $this->choices as $value => $label ) {
    39                     $selected = ( in_array( $this->choices, $this->value() ) ) ? selected( 1, 1, false ) : '';
     39                    $selected = ( in_array( $this->value(), $this->choices ) ) ? selected( 1, 1, false ) : '';
    4040                    echo '<option value="' . esc_attr( $value ) . '"' . $selected . '>' . $label . '</option>';
    4141                }
  • wp-bottom-menu/trunk/readme.txt

    r2562310 r2612060  
    44Tags: bottom menu,mobile menu
    55Requires at least: 5.0
    6 Tested up to: 5.8
    7 Stable tag: 1.4.1
     6Tested up to: 5.8.1
     7Stable tag: 1.4.2
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    5959== Changelog ==
    6060
     61= 1.4.2 =
     62* Fix - Customizer PHP8 conflict.
     63
    6164= 1.4.1 =
    6265* Fix - SVG Hover / Active color.
  • wp-bottom-menu/trunk/wp-bottom-menu.php

    r2562310 r2612060  
    33 * Plugin Name: WP Bottom Menu
    44 * Description: WP Bottom Menu allows you to add a woocommerce supported bottom menu to your site.
    5  * Version: 1.4.1
     5 * Version: 1.4.2
    66 * Author: J4
    77 * Author URI: https://j4cob.net
     
    2424if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
    2525
    26 define( 'WP_BOTTOM_MENU_VERSION', '1.4.1' );
     26define( 'WP_BOTTOM_MENU_VERSION', '1.4.2' );
    2727define( 'WP_BOTTOM_MENU_DIR_URL', plugin_dir_url( __FILE__ ) );
    2828define( 'WP_BOTTOM_MENU_DIR_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.