Changeset 1909047
- Timestamp:
- 07/14/2018 01:27:45 AM (8 years ago)
- Location:
- blogdog
- Files:
-
- 3 edited
- 1 copied
-
tags/9.1 (copied) (copied from blogdog/trunk)
-
trunk/admin/admin.php (modified) (2 diffs)
-
trunk/blogdog.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
blogdog/trunk/admin/admin.php
r1907172 r1909047 661 661 elseif( $_REQUEST['ID'] === 'blogdog_api_settings' ) { 662 662 663 $post = array();664 663 parse_str( $_REQUEST['post'], $post ); 665 664 … … 671 670 update_option( 'blogdog_api_settings', $settings ); 672 671 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. 673 679 $body = array( 'settings' => $settings ); 674 680 675 681 $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'] ) );682 682 683 683 die(); -
blogdog/trunk/blogdog.php
r1907172 r1909047 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.1 6 Version: 9.1.1 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.1 ' );30 define( 'BLOGDOG_PLUGIN_VERSION', '9.1.1' ); 31 31 } 32 32 -
blogdog/trunk/readme.txt
r1907172 r1909047 3 3 Donate link: https://reblogdog.com/donate/ 4 4 Tags: Real Estate, Realtor, Automated Content, IDX, MLS, Blogging, Listings, RETS, IDX Broker, ihomefinder, dsidxpress, simplyrets, placester, ifoundagent, diverse solutions 5 Requires at least: 4. 76 Tested up to: 4.9. 25 Requires at least: 4.0 6 Tested up to: 4.9.7 7 7 Stable tag: /trunk 8 8 License: GPLv2 … … 64 64 == Changelog == 65 65 66 = 9.1.1 = 67 68 * Update to placement of API request. 69 66 70 = 9.1 = 67 71
Note: See TracChangeset
for help on using the changeset viewer.