Changeset 1594027
- Timestamp:
- 02/12/2017 12:56:33 AM (9 years ago)
- Location:
- blogdog
- Files:
-
- 3 edited
- 4 copied
-
tags/5.3.4 (copied) (copied from blogdog/trunk)
-
tags/5.3.4/admin/extend/ifoundagent.php (copied) (copied from blogdog/trunk/admin/extend/ifoundagent.php)
-
tags/5.3.4/blogdog.php (copied) (copied from blogdog/trunk/blogdog.php)
-
tags/5.3.4/readme.txt (copied) (copied from blogdog/trunk/readme.txt)
-
trunk/admin/extend/ifoundagent.php (modified) (6 diffs)
-
trunk/blogdog.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
blogdog/trunk/admin/extend/ifoundagent.php
r1593973 r1594027 196 196 197 197 </div> 198 198 199 <div class="clear"></div> 199 200 </div> 200 201 … … 213 214 * 214 215 * @since 5.3.3 216 * @since 5.3.5 add condition for class_exists( 'ProFoundMLS' ) 215 217 */ 216 218 function blogdog_verify_plugin_active() { … … 225 227 /** 226 228 * Detect Profound Mls plugin. 229 * 230 * @since 5.3.3 231 * @since 5.3.5 add condition for class_exists( 'ProFoundMLS' ) 227 232 */ 228 233 if ( … … 230 235 || 231 236 is_plugin_active_for_network( 'profoundmls/profoundmls.php' ) 237 || 238 class_exists( 'ProFoundMLS' ) 232 239 ) { 233 240 … … 235 242 * @see blogdog_extend_ifoundagent::init() 236 243 */ 237 add_action( 'plugins_loaded', array( 'blogdog_extend_ifoundagent', 'init' ));244 do_action( 'blogdog_extended_plugins_loaded' ); 238 245 239 246 } … … 242 249 243 250 add_action( 'admin_init', 'blogdog_verify_plugin_active' ); 251 252 253 /** 254 * @see blogdog_extend_ifoundagent::init() 255 * 256 * @since 4.3.5 257 */ 258 add_action( 'blogdog_extended_plugins_loaded', array( 'blogdog_extend_ifoundagent', 'init' ) ); 244 259 ?> -
blogdog/trunk/blogdog.php
r1593973 r1594027 4 4 Plugin URI: https://reblogdog.com 5 5 Description: Add automated real estate content to your website. We publish an SEO optimized blog post for you everyday. 6 Version: 5.3. 46 Version: 5.3.5 7 7 Author: reblogdog 8 8 Author URI: https://reblogdog.com … … 28 28 29 29 if ( ! defined( 'BLOGDOG_PLUGIN_VERSION' ) ) 30 define( 'BLOGDOG_PLUGIN_VERSION', '5.3. 4' );30 define( 'BLOGDOG_PLUGIN_VERSION', '5.3.5' ); 31 31 32 32 /** -
blogdog/trunk/readme.txt
r1593973 r1594027 60 60 61 61 == Changelog == 62 63 = 5.3.5 = 64 65 * Debug inconsistant detection of plugin by adding condition `class_exists( 'ProFoundMLS' )` in `ifoundagent` extension. 62 66 63 67 = 5.3.4 =
Note: See TracChangeset
for help on using the changeset viewer.