Changeset 3444499
- Timestamp:
- 01/22/2026 02:35:17 AM (2 months ago)
- Location:
- clone-posts
- Files:
-
- 22 added
- 4 edited
-
tags/2.1.4 (added)
-
tags/2.1.4/LICENSE.txt (added)
-
tags/2.1.4/README.txt (added)
-
tags/2.1.4/admin (added)
-
tags/2.1.4/admin/class-clone-posts-admin.php (added)
-
tags/2.1.4/admin/css (added)
-
tags/2.1.4/admin/css/clone-posts-admin.css (added)
-
tags/2.1.4/admin/index.php (added)
-
tags/2.1.4/admin/partials (added)
-
tags/2.1.4/admin/partials/clone-posts-admin-display.php (added)
-
tags/2.1.4/clone-posts.php (added)
-
tags/2.1.4/includes (added)
-
tags/2.1.4/includes/class-clone-posts-activator.php (added)
-
tags/2.1.4/includes/class-clone-posts-deactivator.php (added)
-
tags/2.1.4/includes/class-clone-posts-i18n.php (added)
-
tags/2.1.4/includes/class-clone-posts-loader.php (added)
-
tags/2.1.4/includes/class-clone-posts.php (added)
-
tags/2.1.4/includes/index.php (added)
-
tags/2.1.4/index.php (added)
-
tags/2.1.4/languages (added)
-
tags/2.1.4/languages/clone-posts.pot (added)
-
tags/2.1.4/uninstall.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/admin/partials/clone-posts-admin-display.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
r3319548 r3444499 4 4 Tags: clone posts, clone pages, duplicate posts, copy posts, post cloning 5 5 Requires at least: 5.3.0 6 Tested up to: 6. 86 Tested up to: 6.9 7 7 Requires PHP: 7.2 8 Stable tag: 2.1. 38 Stable tag: 2.1.4 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 58 58 == Changelog == 59 59 60 = 2.1.4 = 61 * Ensure compatibility with WP 6.9 62 * Fix wrong translation text domains 63 60 64 = 2.1.3 = 61 65 * Ensure compatibility with WP 6.8 -
clone-posts/trunk/admin/partials/clone-posts-admin-display.php
r3020135 r3444499 15 15 16 16 <div class="clone-posts_header"> 17 <h1><span class="dashicons dashicons-admin-page clone-posts"></span> <?php esc_html_e( 'Clone Posts Settings', ' link-juice-keeper' ); ?></h1>17 <h1><span class="dashicons dashicons-admin-page clone-posts"></span> <?php esc_html_e( 'Clone Posts Settings', 'clone-posts' ); ?></h1> 18 18 </div> 19 <h4><?php esc_html_e( 'Easily clone (duplicate) Posts, Pages and Custom Post Types.', ' link-juice-keeper' ); ?></h4>19 <h4><?php esc_html_e( 'Easily clone (duplicate) Posts, Pages and Custom Post Types.', 'clone-posts' ); ?></h4> 20 20 <div class="clone-posts_wrap"> 21 21 <form method="post" action="options.php"> -
clone-posts/trunk/clone-posts.php
r3319548 r3444499 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.1. 316 * Version: 2.1.4 17 17 * Requires at least: 5.3.0 18 * Tested up to: 6. 818 * Tested up to: 6.9 19 19 * Requires PHP: 7.2 20 20 * Author: George Pattichis … … 51 51 * Current plugin version. 52 52 */ 53 define( 'CLONE_POSTS_VERSION', '2.1. 3' );53 define( 'CLONE_POSTS_VERSION', '2.1.4' ); 54 54 55 55 /** -
clone-posts/trunk/includes/class-clone-posts.php
r3319548 r3444499 67 67 $this->version = CLONE_POSTS_VERSION; 68 68 } else { 69 $this->version = '2.1. 3';69 $this->version = '2.1.4'; 70 70 } 71 71 $this->plugin_name = 'clone-posts';
Note: See TracChangeset
for help on using the changeset viewer.