Plugin Directory

Changeset 2608636


Ignore:
Timestamp:
10/04/2021 04:41:33 AM (4 years ago)
Author:
mndpsingh287
Message:

v4.4.5

Location:
duplicate-page/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • duplicate-page/trunk/duplicatepage.php

    r2601508 r2608636  
    55Description: Duplicate Posts, Pages and Custom Posts using single click.
    66Author: mndpsingh287
    7 Version: 4.4.4
     7Version: 4.4.5
    88Author URI: https://profiles.wordpress.org/mndpsingh287/
    99License: GPLv2
     
    1414}
    1515if (!defined('DUPLICATE_PAGE_PLUGIN_VERSION')) {
    16     define('DUPLICATE_PAGE_PLUGIN_VERSION', '4.4.4');
     16    define('DUPLICATE_PAGE_PLUGIN_VERSION', '4.4.5');
    1717}
    1818if (!class_exists('duplicate_page')):
     
    232232            $html .= '</div>';
    233233            $html .= '</div>';
    234             echo apply_filters('the_content',$html);
     234            $content = apply_filters('wpautop', $html);
     235            $content = str_replace(']]>', ']]>', $content);
     236            echo $content;
    235237        }
    236238
  • duplicate-page/trunk/inc/admin-settings.php

    r2601508 r2608636  
    5151        <option value="gutenberg" <?php echo (isset($opt['duplicate_post_editor']) && $opt['duplicate_post_editor'] == 'gutenberg') ? "selected = 'selected'" : ''; ?>><?php _e('Gutenberg Editor', 'duplicate-page'); ?></option>
    5252        </select>
    53     <p><?php _e('Please select which editor your are 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>
    5454</td>
    5555</tr>   
  • duplicate-page/trunk/readme.txt

    r2601508 r2608636  
    44Requires at least: 3.4
    55Tested up to: 5.8.1
    6 Stable tag: 4.4.4
     6Stable tag: 4.4.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5858== Changelog ==
    5959
    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)
    6165
    6266* Fixed sanitization Issues as per wordpress standards.
Note: See TracChangeset for help on using the changeset viewer.