Plugin Directory

Changeset 1102159


Ignore:
Timestamp:
02/28/2015 11:22:18 PM (11 years ago)
Author:
jkrill
Message:

3.4.1 - quick patch

Location:
wp-jump-menu
Files:
60 added
2 edited

Legend:

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

    r1102032 r1102159  
    77Requires at least: 3.2.1
    88Tested up to: 4.1.1
    9 Stable tag: 3.4.0
     9Stable tag: 3.4.1
    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.
     
    108108
    109109== Changelog ==
     110= 3.4.1 =
     111* Removed error_log() from main php file.
     112
    110113= 3.4.0 =
    111114* Please report all bugs!  If you get Javascript errors, please report what other plugins you have installed and activated. Thanks!
  • wp-jump-menu/trunk/wp-jump-menu.php

    r1101570 r1102159  
    33 * @package WP_Jump_Menu
    44 * @author Jim Krill
    5  * @version 3.4.0
     5 * @version 3.4.1
    66 */
    77/*
     
    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.4.0
     11Version: 3.4.1
    1212Author: Jim Krill
    1313Author URI: http://krillwebdesign.com
     
    4040        $this->path = plugin_dir_path( __FILE__ );
    4141        $this->dir = plugins_url( '', __FILE__ );
    42         $this->version = '3.4.0';
     42        $this->version = '3.4.1';
    4343        $this->upgrade_version = '';
    4444        $this->options = get_option( 'wpjm_options' );
     
    158158    {
    159159        $this->options_page = add_options_page('Jump Menu Options','Jump Menu Options', 'edit_posts', 'wpjm-options', array( $this, 'wpjm_options_page'));
    160         error_log(print_r($this->options_page,true));
     160        // error_log(print_r($this->options_page,true));
    161161    }
    162162
Note: See TracChangeset for help on using the changeset viewer.