Changeset 649874
- Timestamp:
- 01/08/2013 08:10:29 PM (13 years ago)
- Location:
- drafts-of-post-revisions
- Files:
-
- 4 edited
- 5 copied
-
tags/0.7.2 (copied) (copied from drafts-of-post-revisions/trunk)
-
tags/0.7.2/Postdrafter.php (copied) (copied from drafts-of-post-revisions/trunk/Postdrafter.php) (1 diff)
-
tags/0.7.2/core.php (copied) (copied from drafts-of-post-revisions/trunk/core.php) (1 diff)
-
tags/0.7.2/draft-revisions.php (copied) (copied from drafts-of-post-revisions/trunk/draft-revisions.php) (1 diff)
-
tags/0.7.2/readme.txt (copied) (copied from drafts-of-post-revisions/trunk/readme.txt) (3 diffs)
-
trunk/Postdrafter.php (modified) (1 diff)
-
trunk/core.php (modified) (1 diff)
-
trunk/draft-revisions.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
drafts-of-post-revisions/tags/0.7.2/Postdrafter.php
r614761 r649874 143 143 144 144 foreach ($all_meta as $key => $value) { 145 $val = maybe_unserialize($value[0]); 145 146 $method == 'add' ? 146 add_post_meta($to_id, $key, $val ue[0]) :147 update_post_meta($to_id, $key, $val ue[0]);147 add_post_meta($to_id, $key, $val) : 148 update_post_meta($to_id, $key, $val); 148 149 } 149 150 } -
drafts-of-post-revisions/tags/0.7.2/core.php
r614761 r649874 7 7 8 8 // plugin version number 9 public static $version = "0.7. 1";9 public static $version = "0.7.2"; 10 10 // key for wp_options to store plugin options 11 11 private static $options_key = 'dpr_options'; -
drafts-of-post-revisions/tags/0.7.2/draft-revisions.php
r614761 r649874 3 3 Plugin Name: Drafts of Post Revisions 4 4 Description: Create drafts of WordPress posts/pages/CPTs even after they've been published 5 Version: 0.7. 15 Version: 0.7.2 6 6 Author: daxitude 7 7 Author URI: http://github.com/daxitude/ -
drafts-of-post-revisions/tags/0.7.2/readme.txt
r614761 r649874 4 4 Requires at least: 3.4 5 5 Tested up to: 3.4.2 6 Stable tag: 0.7. 16 Stable tag: 0.7.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 44 44 When you're ready to update the parent post, click the Publish button from the draft's edit page. All post data, taxonomies, and meta data are merged back into the parent post and the draft post is deleted. 45 45 46 47 46 == Screenshots == 48 47 … … 52 51 1. Draft revisions organized in edit.php under their own custom post status 53 52 53 == Changelog == 54 54 55 = 0.7.2 = 56 * bugfix - make sure serialized post metas are unserialized/serialized properly 57 58 = 0.7.1 = 59 * bugfix - make sure post_name is unique 60 61 = 0.7 = 62 * initial release -
drafts-of-post-revisions/trunk/Postdrafter.php
r614761 r649874 143 143 144 144 foreach ($all_meta as $key => $value) { 145 $val = maybe_unserialize($value[0]); 145 146 $method == 'add' ? 146 add_post_meta($to_id, $key, $val ue[0]) :147 update_post_meta($to_id, $key, $val ue[0]);147 add_post_meta($to_id, $key, $val) : 148 update_post_meta($to_id, $key, $val); 148 149 } 149 150 } -
drafts-of-post-revisions/trunk/core.php
r614761 r649874 7 7 8 8 // plugin version number 9 public static $version = "0.7. 1";9 public static $version = "0.7.2"; 10 10 // key for wp_options to store plugin options 11 11 private static $options_key = 'dpr_options'; -
drafts-of-post-revisions/trunk/draft-revisions.php
r614761 r649874 3 3 Plugin Name: Drafts of Post Revisions 4 4 Description: Create drafts of WordPress posts/pages/CPTs even after they've been published 5 Version: 0.7. 15 Version: 0.7.2 6 6 Author: daxitude 7 7 Author URI: http://github.com/daxitude/ -
drafts-of-post-revisions/trunk/readme.txt
r614761 r649874 4 4 Requires at least: 3.4 5 5 Tested up to: 3.4.2 6 Stable tag: 0.7. 16 Stable tag: 0.7.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 44 44 When you're ready to update the parent post, click the Publish button from the draft's edit page. All post data, taxonomies, and meta data are merged back into the parent post and the draft post is deleted. 45 45 46 47 46 == Screenshots == 48 47 … … 52 51 1. Draft revisions organized in edit.php under their own custom post status 53 52 53 == Changelog == 54 54 55 = 0.7.2 = 56 * bugfix - make sure serialized post metas are unserialized/serialized properly 57 58 = 0.7.1 = 59 * bugfix - make sure post_name is unique 60 61 = 0.7 = 62 * initial release
Note: See TracChangeset
for help on using the changeset viewer.