Changeset 1584736
- Timestamp:
- 01/30/2017 01:18:48 AM (9 years ago)
- Location:
- blogdog
- Files:
-
- 3 edited
- 6 copied
-
tags/5.3.0 (copied) (copied from blogdog/trunk)
-
tags/5.3.0/admin/admin.php (copied) (copied from blogdog/trunk/admin/admin.php)
-
tags/5.3.0/admin/css/style.css (copied) (copied from blogdog/trunk/admin/css/style.css)
-
tags/5.3.0/admin/js/admin.js (copied) (copied from blogdog/trunk/admin/js/admin.js)
-
tags/5.3.0/blogdog.php (copied) (copied from blogdog/trunk/blogdog.php)
-
tags/5.3.0/readme.txt (copied) (copied from blogdog/trunk/readme.txt)
-
trunk/admin/admin.php (modified) (2 diffs)
-
trunk/blogdog.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
blogdog/trunk/admin/admin.php
r1584364 r1584736 1151 1151 blogdog :: blogdog_deactivation(); 1152 1152 1153 /** Delete option fromdatabase. */1154 delete_option( 'blogdog_api_active' );1153 /** Update option to database. */ 1154 update_option( 'blogdog_api_active', 'api_inactive' ); 1155 1155 1156 1156 $response['html'] = 'API Deactivated'; … … 1174 1174 wp_schedule_event( time(), 'daily', 'blogdog_cron' ); 1175 1175 1176 /** Addoption to database. */1176 /** Update option to database. */ 1177 1177 update_option( 'blogdog_api_active', 'api_active' ); 1178 1178 -
blogdog/trunk/blogdog.php
r1584364 r1584736 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. 06 Version: 5.3.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', '5.3. 0' );30 define( 'BLOGDOG_PLUGIN_VERSION', '5.3.1' ); 31 31 32 32 /** … … 369 369 * 370 370 */ 371 if( ! get_option( 'blogdog_api_active' )) {371 if( get_option( 'blogdog_api_active' ) === 'api_inactive' ) { 372 372 373 373 /** Clear cron schedule. */ -
blogdog/trunk/readme.txt
r1584364 r1584736 61 61 == Changelog == 62 62 63 = 5.3.1= 64 65 * Replace `delete_option` with `update_option` for API activation/deactivation. 66 63 67 = 5.3.0 = 64 68
Note: See TracChangeset
for help on using the changeset viewer.