Changeset 428695
- Timestamp:
- 08/25/2011 02:59:26 PM (15 years ago)
- Location:
- admin-dashboard-site-notes/trunk
- Files:
-
- 2 edited
-
dashboard-site-notes.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
admin-dashboard-site-notes/trunk/dashboard-site-notes.php
r427608 r428695 4 4 Plugin URI: http://innerdvations.com/plugins/admin-dashboard-notes/ 5 5 Description: Create site notes to appear either on the dashboard or at the top of various admin pages. 6 Version: 1.0 6 Version: 1.0.1 7 7 Author: Ben Irvin 8 8 Author URI: http://innerdvations.com/ … … 23 23 24 24 == Changelog == 25 = 1.0.1 = 26 * fixed bug that was adding extra meta fields to wrong content types 27 25 28 = 1.0 = 26 29 * added instruction manual … … 387 390 return $post_id; 388 391 } 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 389 398 if(is_array($_POST) && count($_POST)) { 390 399 self::check_and_save_checkbox('loc_dashboard',$post_id); -
admin-dashboard-site-notes/trunk/readme.txt
r427608 r428695 5 5 Requires at least: 3.0 6 6 Tested up to: 3.2.1 7 Stable tag: 1.0 7 Stable tag: 1.0.1 8 8 9 9 Add notes about the site to various admin locations, as well as compile them into an instruction manual. … … 35 35 36 36 == Changelog == 37 = 1.0.1 = 38 * fixed bug that was adding extra meta fields to wrong content types 39 37 40 = 1.0 = 38 41 * added instruction manual page
Note: See TracChangeset
for help on using the changeset viewer.