Plugin Directory

Changeset 2879726


Ignore:
Timestamp:
03/14/2023 10:44:06 AM (3 years ago)
Author:
pattihis
Message:

Release v2.0.4

Location:
clone-posts
Files:
20 added
4 edited

Legend:

Unmodified
Added
Removed
  • clone-posts/trunk/README.txt

    r2765078 r2879726  
    44Tags: 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
    55Requires at least: 5.0
    6 Tested up to: 6.0
     6Tested up to: 6.1
    77Requires PHP: 5.6
    8 Stable tag: 2.0.3
     8Stable tag: 2.0.4
    99License: GPL2
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6161== Changelog ==
    6262
     63= 2.0.4 =
     64* Ensure compatibility with WP 6.1.x
     65* Maybe Unserialize Meta Values - Thanks @bradvin
     66
    6367= 2.0.3 =
    6468* Ensure compatibility with WP 6.0.x
  • clone-posts/trunk/admin/class-clone-posts-admin.php

    r2765078 r2879726  
    500500        $meta = get_post_meta( $id );
    501501        foreach ( $meta as $key => $val ) {
    502             update_post_meta( $newid, $key, $val[0] );
     502            update_post_meta( $newid, $key, maybe_unserialize( $val[0] ) );
    503503        }
    504504
  • clone-posts/trunk/clone-posts.php

    r2765078 r2879726  
    1414 * Plugin URI:        http://wordpress.org/extend/plugins/clone-posts/
    1515 * Description:       Easily clone (duplicate) Posts, Pages and Custom Post Types, including their custom fields (post_meta).
    16  * Version:           2.0.3
     16 * Version:           2.0.4
    1717 * Requires at least: 5.0
    18  * Tested up to:      6.0
     18 * Tested up to:      6.1
    1919 * Requires PHP:      5.6
    2020 * Author:            George Pattihis
     
    6868 * Current plugin version.
    6969 */
    70 define( 'CLONE_POSTS_VERSION', '2.0.3' );
     70define( 'CLONE_POSTS_VERSION', '2.0.4' );
    7171
    7272/**
  • clone-posts/trunk/includes/class-clone-posts.php

    r2765078 r2879726  
    6767            $this->version = CLONE_POSTS_VERSION;
    6868        } else {
    69             $this->version = '2.0.3';
     69            $this->version = '2.0.4';
    7070        }
    7171        $this->plugin_name = 'clone-posts';
Note: See TracChangeset for help on using the changeset viewer.