Changeset 2612060
- Timestamp:
- 10/10/2021 01:18:25 PM (4 years ago)
- Location:
- wp-bottom-menu
- Files:
-
- 31 added
- 3 edited
-
tags/1.4.2 (added)
-
tags/1.4.2/inc (added)
-
tags/1.4.2/inc/customizer-repeater (added)
-
tags/1.4.2/inc/customizer-repeater/class (added)
-
tags/1.4.2/inc/customizer-repeater/class/customizer-repeater-control.php (added)
-
tags/1.4.2/inc/customizer-repeater/css (added)
-
tags/1.4.2/inc/customizer-repeater/css/admin-style.css (added)
-
tags/1.4.2/inc/customizer-repeater/css/font-awesome.css (added)
-
tags/1.4.2/inc/customizer-repeater/css/font-awesome.min.css (added)
-
tags/1.4.2/inc/customizer-repeater/css/fontawesome-iconpicker.min.css (added)
-
tags/1.4.2/inc/customizer-repeater/fonts (added)
-
tags/1.4.2/inc/customizer-repeater/fonts/FontAwesome.otf (added)
-
tags/1.4.2/inc/customizer-repeater/fonts/fontawesome-webfont.eot (added)
-
tags/1.4.2/inc/customizer-repeater/fonts/fontawesome-webfont.svg (added)
-
tags/1.4.2/inc/customizer-repeater/fonts/fontawesome-webfont.ttf (added)
-
tags/1.4.2/inc/customizer-repeater/fonts/fontawesome-webfont.woff (added)
-
tags/1.4.2/inc/customizer-repeater/fonts/fontawesome-webfont.woff2 (added)
-
tags/1.4.2/inc/customizer-repeater/functions.php (added)
-
tags/1.4.2/inc/customizer-repeater/inc (added)
-
tags/1.4.2/inc/customizer-repeater/inc/customizer.php (added)
-
tags/1.4.2/inc/customizer-repeater/inc/icons.php (added)
-
tags/1.4.2/inc/customizer-repeater/js (added)
-
tags/1.4.2/inc/customizer-repeater/js/customizer_repeater.js (added)
-
tags/1.4.2/inc/customizer-repeater/js/fontawesome-iconpicker.js (added)
-
tags/1.4.2/inc/customizer-repeater/js/fontawesome-iconpicker.min.js (added)
-
tags/1.4.2/inc/main.js (added)
-
tags/1.4.2/inc/page-control (added)
-
tags/1.4.2/inc/page-control/page-control.php (added)
-
tags/1.4.2/inc/style.css (added)
-
tags/1.4.2/readme.txt (added)
-
tags/1.4.2/wp-bottom-menu.php (added)
-
trunk/inc/page-control/page-control.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wp-bottom-menu.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-bottom-menu/trunk/inc/page-control/page-control.php
r2558230 r2612060 37 37 <?php 38 38 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 ) : ''; 40 40 echo '<option value="' . esc_attr( $value ) . '"' . $selected . '>' . $label . '</option>'; 41 41 } -
wp-bottom-menu/trunk/readme.txt
r2562310 r2612060 4 4 Tags: bottom menu,mobile menu 5 5 Requires at least: 5.0 6 Tested up to: 5.8 7 Stable tag: 1.4. 16 Tested up to: 5.8.1 7 Stable tag: 1.4.2 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 59 59 == Changelog == 60 60 61 = 1.4.2 = 62 * Fix - Customizer PHP8 conflict. 63 61 64 = 1.4.1 = 62 65 * Fix - SVG Hover / Active color. -
wp-bottom-menu/trunk/wp-bottom-menu.php
r2562310 r2612060 3 3 * Plugin Name: WP Bottom Menu 4 4 * Description: WP Bottom Menu allows you to add a woocommerce supported bottom menu to your site. 5 * Version: 1.4. 15 * Version: 1.4.2 6 6 * Author: J4 7 7 * Author URI: https://j4cob.net … … 24 24 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly 25 25 26 define( 'WP_BOTTOM_MENU_VERSION', '1.4. 1' );26 define( 'WP_BOTTOM_MENU_VERSION', '1.4.2' ); 27 27 define( 'WP_BOTTOM_MENU_DIR_URL', plugin_dir_url( __FILE__ ) ); 28 28 define( 'WP_BOTTOM_MENU_DIR_PATH', plugin_dir_path( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.