Plugin Directory

Changeset 2757955


Ignore:
Timestamp:
07/18/2022 01:35:40 PM (4 years ago)
Author:
allurewebsolutions
Message:

Release 3.7.1: bug fix

Location:
wp-post-modal
Files:
4 edited
6 copied

Legend:

Unmodified
Added
Removed
  • wp-post-modal/tags/3.7.1/README.md

    r2659749 r2757955  
    8989## Changelog
    9090
     91- 3.7.1: Bug Fix
    9192- 3.7.0: Security fixes
    9293- 3.6.3: Minor fix
  • wp-post-modal/tags/3.7.1/public/class-wp-post-modal-public.php

    r2678011 r2757955  
    184184        if (!empty($post['post_password'])) {
    185185            $response = new WP_Error('post_password_protected', 'Post is password protected', array('status' => 403));
    186         } elseif ($post['post_status'] !== "published") {
     186        } elseif ($post['post_status'] !== "publish") {
    187187            $response = new WP_Error('post_private', 'Post is not published', array('status' => 403));
    188         } elseif ($post['post_content'] && $post['post_status'] === "published") {
     188        } elseif ($post['post_content'] && $post['post_status'] === "publish") {
     189
    189190            // render shortcodes from Visual Composer
    190191            $post['post_content'] = apply_filters('the_content', $post['post_content']);
  • wp-post-modal/tags/3.7.1/readme.txt

    r2719946 r2757955  
    44Donate link: https://allurewebsolutions.com/product/donation
    55Requires at least: 3.0
    6 Tested up to: 6.0
    7 Stable tag: 3.7.0
     6Tested up to: 6.1
     7Stable tag: 3.7.1
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • wp-post-modal/tags/3.7.1/wp-post-modal.php

    r2672646 r2757955  
    1717 * Plugin URI:        https://allurewebsolutions.com
    1818 * Description:       This plugin allows any content to be pulled into a modal window dynamically. To use, just create a link with class "modal-link".
    19  * Version:           3.7.0
     19 * Version:           3.7.1
    2020 * Author:            Allure Web Solutions
    2121 * Author URI:        https://allurewebsolutions.com
  • wp-post-modal/trunk/README.md

    r2659749 r2757955  
    8989## Changelog
    9090
     91- 3.7.1: Bug Fix
    9192- 3.7.0: Security fixes
    9293- 3.6.3: Minor fix
  • wp-post-modal/trunk/public/class-wp-post-modal-public.php

    r2678011 r2757955  
    184184        if (!empty($post['post_password'])) {
    185185            $response = new WP_Error('post_password_protected', 'Post is password protected', array('status' => 403));
    186         } elseif ($post['post_status'] !== "published") {
     186        } elseif ($post['post_status'] !== "publish") {
    187187            $response = new WP_Error('post_private', 'Post is not published', array('status' => 403));
    188         } elseif ($post['post_content'] && $post['post_status'] === "published") {
     188        } elseif ($post['post_content'] && $post['post_status'] === "publish") {
     189
    189190            // render shortcodes from Visual Composer
    190191            $post['post_content'] = apply_filters('the_content', $post['post_content']);
  • wp-post-modal/trunk/readme.txt

    r2719946 r2757955  
    44Donate link: https://allurewebsolutions.com/product/donation
    55Requires at least: 3.0
    6 Tested up to: 6.0
    7 Stable tag: 3.7.0
     6Tested up to: 6.1
     7Stable tag: 3.7.1
    88License: GPLv2
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • wp-post-modal/trunk/wp-post-modal.php

    r2672646 r2757955  
    1717 * Plugin URI:        https://allurewebsolutions.com
    1818 * Description:       This plugin allows any content to be pulled into a modal window dynamically. To use, just create a link with class "modal-link".
    19  * Version:           3.7.0
     19 * Version:           3.7.1
    2020 * Author:            Allure Web Solutions
    2121 * Author URI:        https://allurewebsolutions.com
Note: See TracChangeset for help on using the changeset viewer.