Plugin Directory

Changeset 3490232


Ignore:
Timestamp:
03/24/2026 05:21:01 PM (8 days ago)
Author:
closetechnology
Message:

Update to version 1.2.2 from GitHub

Location:
connect-crm-realstate
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • connect-crm-realstate/tags/1.2.2/connect-crm-realstate.php

    r3483826 r3490232  
    66 * Author: closetechnology
    77 * Author URI: https://close.technology/
    8  * Version: 1.2.1
     8 * Version: 1.2.2
    99 *
    1010 * @package WordPress
     
    2020defined( 'ABSPATH' ) || die( 'No script kiddies please!' );
    2121
    22 define( 'CCRMRE_VERSION', '1.2.1' );
     22define( 'CCRMRE_VERSION', '1.2.2' );
    2323define( 'CCRMRE_PLUGIN', __FILE__ );
    2424define( 'CCRMRE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • connect-crm-realstate/tags/1.2.2/includes/class-iip-admin.php

    r3483826 r3490232  
    703703        $show_gallery = isset( $this->settings['show_gallery'] ) ? $this->settings['show_gallery'] : 'no';
    704704        ?>
    705         <select name="ccrmre_settings[ccrmre_show_gallery]" id="show_gallery">
     705        <select name="ccrmre_settings[show_gallery]" id="show_gallery">
    706706            <option value="no" <?php selected( $show_gallery, 'no' ); ?>><?php esc_html_e( 'No - Use shortcode only', 'connect-crm-realstate' ); ?></option>
    707707            <option value="yes" <?php selected( $show_gallery, 'yes' ); ?>><?php esc_html_e( 'Yes - Auto display after title', 'connect-crm-realstate' ); ?></option>
  • connect-crm-realstate/tags/1.2.2/includes/class-iip-import.php

    r3483826 r3490232  
    6060    public function scripts_manual_import( $hook ) {
    6161        if ( 'toplevel_page_ccrmre_options' !== $hook ) {
     62            return;
     63        }
     64
     65        $active_tab = isset( $_GET['tab'] ) ? sanitize_key( $_GET['tab'] ) : 'iip-import'; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
     66        if ( 'iip-import' !== $active_tab ) {
    6267            return;
    6368        }
  • connect-crm-realstate/tags/1.2.2/readme.txt

    r3483826 r3490232  
    55Tested up to: 7.0
    66Requires PHP: 7.4
    7 Stable tag: 1.2.1
     7Stable tag: 1.2.2
    88License: GPL-2.0-or-later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    9595== Changelog ==
    9696
     97= 1.2.2 =
     98* Fixed Auto Display Photo Gallery setting not saving (form input name did not match the settings sanitizer).
     99
    97100= 1.2.1 =
    98101* Added ability to filter by Postal Code.
  • connect-crm-realstate/tags/1.2.2/vendor/composer/installed.php

    r3483826 r3490232  
    22    'root' => array(
    33        'name' => 'close/connect-crm-realstate',
    4         'pretty_version' => '1.2.1',
    5         'version' => '1.2.1.0',
    6         'reference' => '3a36da5208e0dbac8f759380e394d219b53ae59e',
     4        'pretty_version' => '1.2.2',
     5        'version' => '1.2.2.0',
     6        'reference' => 'b33115d5004843dc1414d4cd007724597fabd67b',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'close/connect-crm-realstate' => array(
    14             'pretty_version' => '1.2.1',
    15             'version' => '1.2.1.0',
    16             'reference' => '3a36da5208e0dbac8f759380e394d219b53ae59e',
     14            'pretty_version' => '1.2.2',
     15            'version' => '1.2.2.0',
     16            'reference' => 'b33115d5004843dc1414d4cd007724597fabd67b',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • connect-crm-realstate/trunk/connect-crm-realstate.php

    r3483826 r3490232  
    66 * Author: closetechnology
    77 * Author URI: https://close.technology/
    8  * Version: 1.2.1
     8 * Version: 1.2.2
    99 *
    1010 * @package WordPress
     
    2020defined( 'ABSPATH' ) || die( 'No script kiddies please!' );
    2121
    22 define( 'CCRMRE_VERSION', '1.2.1' );
     22define( 'CCRMRE_VERSION', '1.2.2' );
    2323define( 'CCRMRE_PLUGIN', __FILE__ );
    2424define( 'CCRMRE_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • connect-crm-realstate/trunk/includes/class-iip-admin.php

    r3483826 r3490232  
    703703        $show_gallery = isset( $this->settings['show_gallery'] ) ? $this->settings['show_gallery'] : 'no';
    704704        ?>
    705         <select name="ccrmre_settings[ccrmre_show_gallery]" id="show_gallery">
     705        <select name="ccrmre_settings[show_gallery]" id="show_gallery">
    706706            <option value="no" <?php selected( $show_gallery, 'no' ); ?>><?php esc_html_e( 'No - Use shortcode only', 'connect-crm-realstate' ); ?></option>
    707707            <option value="yes" <?php selected( $show_gallery, 'yes' ); ?>><?php esc_html_e( 'Yes - Auto display after title', 'connect-crm-realstate' ); ?></option>
  • connect-crm-realstate/trunk/includes/class-iip-import.php

    r3483826 r3490232  
    6060    public function scripts_manual_import( $hook ) {
    6161        if ( 'toplevel_page_ccrmre_options' !== $hook ) {
     62            return;
     63        }
     64
     65        $active_tab = isset( $_GET['tab'] ) ? sanitize_key( $_GET['tab'] ) : 'iip-import'; // phpcs:ignore WordPress.Security.NonceVerification.Recommended
     66        if ( 'iip-import' !== $active_tab ) {
    6267            return;
    6368        }
  • connect-crm-realstate/trunk/readme.txt

    r3483826 r3490232  
    55Tested up to: 7.0
    66Requires PHP: 7.4
    7 Stable tag: 1.2.1
     7Stable tag: 1.2.2
    88License: GPL-2.0-or-later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    9595== Changelog ==
    9696
     97= 1.2.2 =
     98* Fixed Auto Display Photo Gallery setting not saving (form input name did not match the settings sanitizer).
     99
    97100= 1.2.1 =
    98101* Added ability to filter by Postal Code.
  • connect-crm-realstate/trunk/vendor/composer/installed.php

    r3483826 r3490232  
    22    'root' => array(
    33        'name' => 'close/connect-crm-realstate',
    4         'pretty_version' => '1.2.1',
    5         'version' => '1.2.1.0',
    6         'reference' => '3a36da5208e0dbac8f759380e394d219b53ae59e',
     4        'pretty_version' => '1.2.2',
     5        'version' => '1.2.2.0',
     6        'reference' => 'b33115d5004843dc1414d4cd007724597fabd67b',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1212    'versions' => array(
    1313        'close/connect-crm-realstate' => array(
    14             'pretty_version' => '1.2.1',
    15             'version' => '1.2.1.0',
    16             'reference' => '3a36da5208e0dbac8f759380e394d219b53ae59e',
     14            'pretty_version' => '1.2.2',
     15            'version' => '1.2.2.0',
     16            'reference' => 'b33115d5004843dc1414d4cd007724597fabd67b',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.