Changeset 2608636
- Timestamp:
- 10/04/2021 04:41:33 AM (4 years ago)
- Location:
- duplicate-page/trunk
- Files:
-
- 3 edited
-
duplicatepage.php (modified) (3 diffs)
-
inc/admin-settings.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
duplicate-page/trunk/duplicatepage.php
r2601508 r2608636 5 5 Description: Duplicate Posts, Pages and Custom Posts using single click. 6 6 Author: mndpsingh287 7 Version: 4.4. 47 Version: 4.4.5 8 8 Author URI: https://profiles.wordpress.org/mndpsingh287/ 9 9 License: GPLv2 … … 14 14 } 15 15 if (!defined('DUPLICATE_PAGE_PLUGIN_VERSION')) { 16 define('DUPLICATE_PAGE_PLUGIN_VERSION', '4.4. 4');16 define('DUPLICATE_PAGE_PLUGIN_VERSION', '4.4.5'); 17 17 } 18 18 if (!class_exists('duplicate_page')): … … 232 232 $html .= '</div>'; 233 233 $html .= '</div>'; 234 echo apply_filters('the_content',$html); 234 $content = apply_filters('wpautop', $html); 235 $content = str_replace(']]>', ']]>', $content); 236 echo $content; 235 237 } 236 238 -
duplicate-page/trunk/inc/admin-settings.php
r2601508 r2608636 51 51 <option value="gutenberg" <?php echo (isset($opt['duplicate_post_editor']) && $opt['duplicate_post_editor'] == 'gutenberg') ? "selected = 'selected'" : ''; ?>><?php _e('Gutenberg Editor', 'duplicate-page'); ?></option> 52 52 </select> 53 <p><?php _e('Please select which editor you rare using.<strong>Default: </strong> Classic Editor', 'duplicate-page'); ?></p>53 <p><?php _e('Please select which editor you are using.<strong>Default: </strong> Classic Editor', 'duplicate-page'); ?></p> 54 54 </td> 55 55 </tr> -
duplicate-page/trunk/readme.txt
r2601508 r2608636 4 4 Requires at least: 3.4 5 5 Tested up to: 5.8.1 6 Stable tag: 4.4. 46 Stable tag: 4.4.5 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 58 58 == Changelog == 59 59 60 = 4.4.4(17th Sep, 2021) 60 = 4.4.5(29th Sep, 2021) 61 62 * Fixed ths issue for content HTML displaying in the sidebar. 63 64 = 4.4.4(16th Sep, 2021) 61 65 62 66 * Fixed sanitization Issues as per wordpress standards.
Note: See TracChangeset
for help on using the changeset viewer.