Plugin Directory

Changeset 428695


Ignore:
Timestamp:
08/25/2011 02:59:26 PM (15 years ago)
Author:
BenIrvin
Message:
 
Location:
admin-dashboard-site-notes/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • admin-dashboard-site-notes/trunk/dashboard-site-notes.php

    r427608 r428695  
    44Plugin URI: http://innerdvations.com/plugins/admin-dashboard-notes/
    55Description: Create site notes to appear either on the dashboard or at the top of various admin pages.
    6 Version: 1.0
     6Version: 1.0.1
    77Author: Ben Irvin
    88Author URI: http://innerdvations.com/
     
    2323
    2424== Changelog ==
     25= 1.0.1 =
     26* fixed bug that was adding extra meta fields to wrong content types
     27
    2528= 1.0 =
    2629* added instruction manual
     
    387390            return $post_id;
    388391        }
     392        // only save these fields on dsn_notes
     393        if( (isset($_POST['post_type']) && $_POST['post_type'] != self::$post_type_name )
     394            || (isset($_GET['post_type']) && $_GET['post_type'] != self::$post_type_name )) {
     395            return $post_id;
     396        }
     397       
    389398        if(is_array($_POST) && count($_POST)) {
    390399            self::check_and_save_checkbox('loc_dashboard',$post_id);
  • admin-dashboard-site-notes/trunk/readme.txt

    r427608 r428695  
    55Requires at least: 3.0
    66Tested up to: 3.2.1
    7 Stable tag: 1.0
     7Stable tag: 1.0.1
    88
    99Add notes about the site to various admin locations, as well as compile them into an instruction manual.
     
    3535
    3636== Changelog ==
     37= 1.0.1 =
     38* fixed bug that was adding extra meta fields to wrong content types
     39
    3740= 1.0 =
    3841* added instruction manual page
Note: See TracChangeset for help on using the changeset viewer.