Plugin Directory

Changeset 1594027


Ignore:
Timestamp:
02/12/2017 12:56:33 AM (9 years ago)
Author:
reblogdog
Message:

Commit v 5.3.5 minor bug fix compatipility with ifoundagent plugin

Location:
blogdog
Files:
3 edited
4 copied

Legend:

Unmodified
Added
Removed
  • blogdog/trunk/admin/extend/ifoundagent.php

    r1593973 r1594027  
    196196                       
    197197                    </div>
    198                        
     198                   
     199                    <div class="clear"></div>
    199200                </div>
    200201                   
     
    213214 *
    214215 * @since 5.3.3
     216 * @since 5.3.5 add condition for class_exists( 'ProFoundMLS' )
    215217 */
    216218function blogdog_verify_plugin_active() {
     
    225227    /**
    226228     * Detect Profound Mls plugin.
     229     *
     230     * @since 5.3.3
     231     * @since 5.3.5 add condition for class_exists( 'ProFoundMLS' )
    227232     */
    228233    if (
     
    230235        ||
    231236        is_plugin_active_for_network( 'profoundmls/profoundmls.php' )
     237        ||
     238        class_exists( 'ProFoundMLS' )
    232239    ) {
    233240     
     
    235242         * @see blogdog_extend_ifoundagent::init()
    236243         */
    237         add_action( 'plugins_loaded', array( 'blogdog_extend_ifoundagent', 'init' ) );
     244        do_action( 'blogdog_extended_plugins_loaded' );
    238245       
    239246    }
     
    242249
    243250add_action( 'admin_init', 'blogdog_verify_plugin_active' );
     251
     252
     253/**
     254 * @see blogdog_extend_ifoundagent::init()
     255 *
     256 * @since 4.3.5
     257 */
     258add_action( 'blogdog_extended_plugins_loaded', array( 'blogdog_extend_ifoundagent', 'init' ) );
    244259?>
  • blogdog/trunk/blogdog.php

    r1593973 r1594027  
    44Plugin URI:  https://reblogdog.com
    55Description: Add automated real estate content to your website. We publish an SEO optimized blog post for you everyday.
    6 Version:     5.3.4
     6Version:     5.3.5
    77Author:      reblogdog
    88Author URI:  https://reblogdog.com
     
    2828
    2929if ( ! defined( 'BLOGDOG_PLUGIN_VERSION' ) )
    30     define( 'BLOGDOG_PLUGIN_VERSION', '5.3.4' );
     30    define( 'BLOGDOG_PLUGIN_VERSION', '5.3.5' );
    3131
    3232/**
  • blogdog/trunk/readme.txt

    r1593973 r1594027  
    6060
    6161== Changelog ==
     62
     63= 5.3.5 =
     64
     65* Debug inconsistant detection of plugin by adding condition `class_exists( 'ProFoundMLS' )` in `ifoundagent` extension.
    6266
    6367= 5.3.4 =
Note: See TracChangeset for help on using the changeset viewer.