Plugin Directory

Changeset 2765084


Ignore:
Timestamp:
08/02/2022 10:11:57 AM (4 years ago)
Author:
pwps
Message:

Release version 3.2.5.1

Location:
wp-crm-system/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-crm-system/trunk/includes/wcs-modal-quick-add.php

    r2761091 r2765084  
    1616 *
    1717 * @since   3.2.5
     18 *
     19 * Update: Use admin_footer so that the modal markup won't be visible right away
     20 *
     21 * @since   3.2.5.1
    1822 */
    19 add_action( 'init', 'wcs_modal_quick_add' );
     23add_action( 'admin_footer', 'wcs_modal_quick_add' );
    2024function wcs_modal_quick_add() {
    2125?>
  • wp-crm-system/trunk/readme.txt

    r2761105 r2765084  
    55Requires PHP: 5.6
    66Tested up to: 6.0.1
    7 Stable tag: 3.2.5
     7Stable tag: 3.2.5.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9191
    9292== Changelog ==
     93= 3.2.5.1 =
     94* Fix: Search feature failing
    9395= 3.2.5 =
    9496* New: Quick add modals for Campaigns, Organizations, Contacts and Projects
  • wp-crm-system/trunk/wp-crm-system.php

    r2761091 r2765084  
    44Plugin URI: https://www.wp-crm.com
    55Description: A complete CRM for WordPress
    6 Version: 3.2.5
     6Version: 3.2.5.1
    77Author: Premium WordPress Support
    88Author URI: https://www.wp-crm.com
     
    3535}
    3636if ( ! defined( 'WP_CRM_SYSTEM_VERSION' ) ) {
    37   define( 'WP_CRM_SYSTEM_VERSION', '3.2.5' );
     37  define( 'WP_CRM_SYSTEM_VERSION', '3.2.5.1' );
    3838}
    3939if( ! defined( 'WP_CRM_SYSTEM_URL' ) ) {
     
    159159    }
    160160} elseif( isset( $_GET['post_type'] ) ) {
     161
     162    /**
     163     * Ensure that the modal markup won't be visible on the table list page
     164     *
     165     * @since   3.2.5.1
     166     */
     167    global $pagenow;
     168    if( 'post-new.php' !== $pagenow ) {
     169        return;
     170    }
    161171    /**
    162172     * Valid post type we allow for this modal
Note: See TracChangeset for help on using the changeset viewer.