Plugin Directory

Changeset 1463475


Ignore:
Timestamp:
07/29/2016 09:23:42 PM (10 years ago)
Author:
jkrill
Message:

Update 3.5.7 - Bug Fixes

Location:
wp-jump-menu/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-jump-menu/trunk/readme.txt

    r1462429 r1463475  
    77Requires at least: 3.7
    88Tested up to: 4.4.2
    9 Stable tag: 3.5.6
     9Stable tag: 3.5.7
    1010
    1111Creates a drop-down menu in the admin area which makes it easy to jump to a page, post, custom post type or media file for editing.
     
    110110
    111111== Changelog ==
     112= 3.5.7 =
     113* Bug Fix - additional parameter was needed on wp_list_pages() so that <ul>'s were not showing in select menus
     114
    112115= 3.5.6 =
    113116* Bug Fix
  • wp-jump-menu/trunk/wp-jump-menu.php

    r1462429 r1463475  
    99Plugin URI: http://wpjumpmenu.com
    1010Description: Creates a drop-down menu (jump menu) in a bar across the top or bottom of the screen that makes it easy to jump right to a page, post, or custom post type in the admin area to edit.
    11 Version: 3.5.6
     11Version: 3.5.7
    1212Author: Jim Krill
    1313Author URI: http://krillwebdesign.com
     
    4141        $this->path                     = plugin_dir_path( __FILE__ );
    4242        $this->dir                      = plugins_url( '', __FILE__ );
    43         $this->version                  = '3.5.6';
     43        $this->version                  = '3.5.7';
    4444        $this->upgrade_version          = '';
    4545        $this->options                  = get_option( 'wpjm_options' );
     
    936936                                    'depth'       => $numberposts,
    937937                                    'sort_column' => $sortby,
    938                                     'sort_order'  => $sort
     938                                    'sort_order'  => $sort,
     939                                    'title_li'    => ''
    939940                                );
    940941
     
    987988                                'depth'       => $numberposts,
    988989                                'sort_column' => $sortby,
    989                                 'sort_order'  => $sort
     990                                'sort_order'  => $sort,
     991                                'title_li'    => ''
    990992                            );
    991993
Note: See TracChangeset for help on using the changeset viewer.