Plugin Directory

Changeset 1823163


Ignore:
Timestamp:
02/16/2018 12:55:35 AM (8 years ago)
Author:
reblogdog
Message:

Commit v9.0.5

Location:
blogdog/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • blogdog/trunk/blogdog.php

    r1819473 r1823163  
    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:     9.0.4
     6Version:     9.0.5
    77Author:      reblogdog
    88Author URI:  https://reblogdog.com
     
    2828
    2929if ( ! defined( 'BLOGDOG_PLUGIN_VERSION' ) )
    30     define( 'BLOGDOG_PLUGIN_VERSION', '9.0.4' );
     30    define( 'BLOGDOG_PLUGIN_VERSION', '9.0.5' );
    3131
    3232/**
     
    650650    }
    651651
     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
    652663    private function useable_listing( $listing ) {
    653664
    654665        if( $settings = (array) apply_filters( 'blogdog_GET', 'elite-settings/' ) ) {
     666
     667            require_once( ABSPATH . 'wp-admin/includes/post.php' );
    655668
    656669            $areas      = explode( ',', $settings['areas'] );
  • blogdog/trunk/readme.txt

    r1819473 r1823163  
    6363== Changelog ==
    6464
     65= 9.0.5 =
     66
     67* Require admin PHP for post_exists function
     68
    6569= 9.0.4 =
    6670
Note: See TracChangeset for help on using the changeset viewer.