Changeset 1823163
- Timestamp:
- 02/16/2018 12:55:35 AM (8 years ago)
- Location:
- blogdog/trunk
- Files:
-
- 2 edited
-
blogdog.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
blogdog/trunk/blogdog.php
r1819473 r1823163 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: 9.0. 46 Version: 9.0.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', '9.0. 4' );30 define( 'BLOGDOG_PLUGIN_VERSION', '9.0.5' ); 31 31 32 32 /** … … 650 650 } 651 651 652 /** 653 * Useable Listing 654 * 655 * Checks to see if a listing is usable for an elite post. 656 * 657 * @since 6.0.0 658 * @since 9.0.5 Require admin PHP for post_exists function. 659 * 660 * @param object $listing The MLS data object. 661 */ 662 652 663 private function useable_listing( $listing ) { 653 664 654 665 if( $settings = (array) apply_filters( 'blogdog_GET', 'elite-settings/' ) ) { 666 667 require_once( ABSPATH . 'wp-admin/includes/post.php' ); 655 668 656 669 $areas = explode( ',', $settings['areas'] ); -
blogdog/trunk/readme.txt
r1819473 r1823163 63 63 == Changelog == 64 64 65 = 9.0.5 = 66 67 * Require admin PHP for post_exists function 68 65 69 = 9.0.4 = 66 70
Note: See TracChangeset
for help on using the changeset viewer.