Changeset 2879726
- Timestamp:
- 03/14/2023 10:44:06 AM (3 years ago)
- Location:
- clone-posts
- Files:
-
- 20 added
- 4 edited
-
tags/2.0.4 (added)
-
tags/2.0.4/LICENSE.txt (added)
-
tags/2.0.4/README.txt (added)
-
tags/2.0.4/admin (added)
-
tags/2.0.4/admin/class-clone-posts-admin.php (added)
-
tags/2.0.4/admin/index.php (added)
-
tags/2.0.4/admin/partials (added)
-
tags/2.0.4/admin/partials/clone-posts-admin-display.php (added)
-
tags/2.0.4/clone-posts.php (added)
-
tags/2.0.4/includes (added)
-
tags/2.0.4/includes/class-clone-posts-activator.php (added)
-
tags/2.0.4/includes/class-clone-posts-deactivator.php (added)
-
tags/2.0.4/includes/class-clone-posts-i18n.php (added)
-
tags/2.0.4/includes/class-clone-posts-loader.php (added)
-
tags/2.0.4/includes/class-clone-posts.php (added)
-
tags/2.0.4/includes/index.php (added)
-
tags/2.0.4/index.php (added)
-
tags/2.0.4/languages (added)
-
tags/2.0.4/languages/clone-posts.pot (added)
-
tags/2.0.4/uninstall.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/admin/class-clone-posts-admin.php (modified) (1 diff)
-
trunk/clone-posts.php (modified) (2 diffs)
-
trunk/includes/class-clone-posts.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
clone-posts/trunk/README.txt
r2765078 r2879726 4 4 Tags: clone posts, clone pages, clone post, clone page, clone, page cloning, post cloning, posts cloning, pages cloning, page copy, page copy paste, post copy, posts copy paste, copy pages, copy posts, copy and paste posts, copy and paste pages, clone, cloning, copy and paste 5 5 Requires at least: 5.0 6 Tested up to: 6. 06 Tested up to: 6.1 7 7 Requires PHP: 5.6 8 Stable tag: 2.0. 38 Stable tag: 2.0.4 9 9 License: GPL2 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 61 61 == Changelog == 62 62 63 = 2.0.4 = 64 * Ensure compatibility with WP 6.1.x 65 * Maybe Unserialize Meta Values - Thanks @bradvin 66 63 67 = 2.0.3 = 64 68 * Ensure compatibility with WP 6.0.x -
clone-posts/trunk/admin/class-clone-posts-admin.php
r2765078 r2879726 500 500 $meta = get_post_meta( $id ); 501 501 foreach ( $meta as $key => $val ) { 502 update_post_meta( $newid, $key, $val[0]);502 update_post_meta( $newid, $key, maybe_unserialize( $val[0] ) ); 503 503 } 504 504 -
clone-posts/trunk/clone-posts.php
r2765078 r2879726 14 14 * Plugin URI: http://wordpress.org/extend/plugins/clone-posts/ 15 15 * Description: Easily clone (duplicate) Posts, Pages and Custom Post Types, including their custom fields (post_meta). 16 * Version: 2.0. 316 * Version: 2.0.4 17 17 * Requires at least: 5.0 18 * Tested up to: 6. 018 * Tested up to: 6.1 19 19 * Requires PHP: 5.6 20 20 * Author: George Pattihis … … 68 68 * Current plugin version. 69 69 */ 70 define( 'CLONE_POSTS_VERSION', '2.0. 3' );70 define( 'CLONE_POSTS_VERSION', '2.0.4' ); 71 71 72 72 /** -
clone-posts/trunk/includes/class-clone-posts.php
r2765078 r2879726 67 67 $this->version = CLONE_POSTS_VERSION; 68 68 } else { 69 $this->version = '2.0. 3';69 $this->version = '2.0.4'; 70 70 } 71 71 $this->plugin_name = 'clone-posts';
Note: See TracChangeset
for help on using the changeset viewer.