Changeset 2757955
- Timestamp:
- 07/18/2022 01:35:40 PM (4 years ago)
- Location:
- wp-post-modal
- Files:
-
- 4 edited
- 6 copied
-
tags/3.7.1 (copied) (copied from wp-post-modal/trunk)
-
tags/3.7.1/README.md (copied) (copied from wp-post-modal/trunk/README.md) (1 diff)
-
tags/3.7.1/admin/class-wp-post-modal-admin.php (copied) (copied from wp-post-modal/trunk/admin/class-wp-post-modal-admin.php)
-
tags/3.7.1/public/class-wp-post-modal-public.php (copied) (copied from wp-post-modal/trunk/public/class-wp-post-modal-public.php) (1 diff)
-
tags/3.7.1/readme.txt (copied) (copied from wp-post-modal/trunk/readme.txt) (1 diff)
-
tags/3.7.1/wp-post-modal.php (copied) (copied from wp-post-modal/trunk/wp-post-modal.php) (1 diff)
-
trunk/README.md (modified) (1 diff)
-
trunk/public/class-wp-post-modal-public.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wp-post-modal.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-post-modal/tags/3.7.1/README.md
r2659749 r2757955 89 89 ## Changelog 90 90 91 - 3.7.1: Bug Fix 91 92 - 3.7.0: Security fixes 92 93 - 3.6.3: Minor fix -
wp-post-modal/tags/3.7.1/public/class-wp-post-modal-public.php
r2678011 r2757955 184 184 if (!empty($post['post_password'])) { 185 185 $response = new WP_Error('post_password_protected', 'Post is password protected', array('status' => 403)); 186 } elseif ($post['post_status'] !== "publish ed") {186 } elseif ($post['post_status'] !== "publish") { 187 187 $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 189 190 // render shortcodes from Visual Composer 190 191 $post['post_content'] = apply_filters('the_content', $post['post_content']); -
wp-post-modal/tags/3.7.1/readme.txt
r2719946 r2757955 4 4 Donate link: https://allurewebsolutions.com/product/donation 5 5 Requires at least: 3.0 6 Tested up to: 6. 07 Stable tag: 3.7. 06 Tested up to: 6.1 7 Stable tag: 3.7.1 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
wp-post-modal/tags/3.7.1/wp-post-modal.php
r2672646 r2757955 17 17 * Plugin URI: https://allurewebsolutions.com 18 18 * 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. 019 * Version: 3.7.1 20 20 * Author: Allure Web Solutions 21 21 * Author URI: https://allurewebsolutions.com -
wp-post-modal/trunk/README.md
r2659749 r2757955 89 89 ## Changelog 90 90 91 - 3.7.1: Bug Fix 91 92 - 3.7.0: Security fixes 92 93 - 3.6.3: Minor fix -
wp-post-modal/trunk/public/class-wp-post-modal-public.php
r2678011 r2757955 184 184 if (!empty($post['post_password'])) { 185 185 $response = new WP_Error('post_password_protected', 'Post is password protected', array('status' => 403)); 186 } elseif ($post['post_status'] !== "publish ed") {186 } elseif ($post['post_status'] !== "publish") { 187 187 $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 189 190 // render shortcodes from Visual Composer 190 191 $post['post_content'] = apply_filters('the_content', $post['post_content']); -
wp-post-modal/trunk/readme.txt
r2719946 r2757955 4 4 Donate link: https://allurewebsolutions.com/product/donation 5 5 Requires at least: 3.0 6 Tested up to: 6. 07 Stable tag: 3.7. 06 Tested up to: 6.1 7 Stable tag: 3.7.1 8 8 License: GPLv2 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
wp-post-modal/trunk/wp-post-modal.php
r2672646 r2757955 17 17 * Plugin URI: https://allurewebsolutions.com 18 18 * 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. 019 * Version: 3.7.1 20 20 * Author: Allure Web Solutions 21 21 * Author URI: https://allurewebsolutions.com
Note: See TracChangeset
for help on using the changeset viewer.