Changeset 1463475
- Timestamp:
- 07/29/2016 09:23:42 PM (10 years ago)
- Location:
- wp-jump-menu/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-jump-menu.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-jump-menu/trunk/readme.txt
r1462429 r1463475 7 7 Requires at least: 3.7 8 8 Tested up to: 4.4.2 9 Stable tag: 3.5. 69 Stable tag: 3.5.7 10 10 11 11 Creates 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. … … 110 110 111 111 == 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 112 115 = 3.5.6 = 113 116 * Bug Fix -
wp-jump-menu/trunk/wp-jump-menu.php
r1462429 r1463475 9 9 Plugin URI: http://wpjumpmenu.com 10 10 Description: 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. 611 Version: 3.5.7 12 12 Author: Jim Krill 13 13 Author URI: http://krillwebdesign.com … … 41 41 $this->path = plugin_dir_path( __FILE__ ); 42 42 $this->dir = plugins_url( '', __FILE__ ); 43 $this->version = '3.5. 6';43 $this->version = '3.5.7'; 44 44 $this->upgrade_version = ''; 45 45 $this->options = get_option( 'wpjm_options' ); … … 936 936 'depth' => $numberposts, 937 937 'sort_column' => $sortby, 938 'sort_order' => $sort 938 'sort_order' => $sort, 939 'title_li' => '' 939 940 ); 940 941 … … 987 988 'depth' => $numberposts, 988 989 'sort_column' => $sortby, 989 'sort_order' => $sort 990 'sort_order' => $sort, 991 'title_li' => '' 990 992 ); 991 993
Note: See TracChangeset
for help on using the changeset viewer.