Plugin Directory

Changeset 1909047


Ignore:
Timestamp:
07/14/2018 01:27:45 AM (8 years ago)
Author:
reblogdog
Message:

Commit v9.1.1

Location:
blogdog
Files:
3 edited
1 copied

Legend:

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

    r1907172 r1909047  
    661661        elseif( $_REQUEST['ID'] === 'blogdog_api_settings' ) {
    662662           
    663             $post = array();
    664663            parse_str( $_REQUEST['post'], $post );
    665664           
     
    671670            update_option( 'blogdog_api_settings', $settings );
    672671
     672            $api_key = sanitize_text_field( $post['api_key'] );
     673
     674            update_option( 'blogdog_api_key', $api_key );
     675
     676            update_option( 'blogdog_author_id', absint( $post['author_id'] ) );
     677
     678            // Do this last to insure the  database has been already updated.
    673679            $body = array( 'settings' => $settings );
    674680
    675681            $this->blogdog_POST( 'update/', array( 'body' => $body ) );
    676 
    677             $api_key = sanitize_text_field( $post['api_key'] );
    678 
    679             update_option( 'blogdog_api_key', $api_key );
    680 
    681             update_option( 'blogdog_author_id', absint( $post['author_id'] ) );
    682682           
    683683            die();
  • blogdog/trunk/blogdog.php

    r1907172 r1909047  
    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.1
     6Version:     9.1.1
    77Author:      reblogdog
    88Author URI:  https://reblogdog.com
     
    2828
    2929if ( ! defined( 'BLOGDOG_PLUGIN_VERSION' ) ) {
    30     define( 'BLOGDOG_PLUGIN_VERSION', '9.1' );
     30    define( 'BLOGDOG_PLUGIN_VERSION', '9.1.1' );
    3131}
    3232
  • blogdog/trunk/readme.txt

    r1907172 r1909047  
    33Donate link: https://reblogdog.com/donate/
    44Tags: Real Estate, Realtor, Automated Content, IDX, MLS, Blogging, Listings, RETS, IDX Broker, ihomefinder, dsidxpress, simplyrets, placester, ifoundagent, diverse solutions
    5 Requires at least: 4.7
    6 Tested up to: 4.9.2
     5Requires at least: 4.0
     6Tested up to: 4.9.7
    77Stable tag: /trunk
    88License: GPLv2
     
    6464== Changelog ==
    6565
     66= 9.1.1 =
     67
     68* Update to placement of API request.
     69
    6670= 9.1 =
    6771
Note: See TracChangeset for help on using the changeset viewer.