Plugin Directory

Changeset 667479


Ignore:
Timestamp:
02/13/2013 04:47:18 PM (13 years ago)
Author:
doodlebee
Message:

bugfix for 2.5 - missing variable

Location:
back-end-instructions/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • back-end-instructions/trunk/instructions.php

    r667019 r667479  
    55Description: Plugin to provide nice little instructions for back-end WordPress users
    66Author: Shelly Cole
    7 Version: 2.5
     7Version: 2.5.1
    88Author URI: http://brassblogs.com
    99License: GPLv2
     
    493493add_action ('wp_head', 'bei_hide_first_post_from_google');
    494494function bei_hide_first_post_from_google() {
    495     global $post;
     495    global $wpdb, $post;
    496496    $how_to_use_id = $wpdb->get_var("SELECT ID FROM $wpdb->posts WHERE post_name = 'bei-how-to' AND post_type = 'instructions'");
    497497   
  • back-end-instructions/trunk/readme.txt

    r667019 r667479  
    55Requires at least: 3.1
    66Tested up to: 3.5
    7 Stable tag: 2.5
     7Stable tag: 2.5.1
    88License: GPLv2 or later
    99
     
    147147== Changelog ==
    148148
     149= 2.5.1 =
     150* Bugfix: missing variable.
     151
    149152= 2.5 =
    150153* pluggable.php won't load until after ALL plugins have loaded, and only if needed.
Note: See TracChangeset for help on using the changeset viewer.