Changeset 2762111
- Timestamp:
- 07/27/2022 04:54:40 AM (4 years ago)
- Location:
- sackson-web-data/trunk
- Files:
-
- 3 edited
-
README.txt (modified) (2 diffs)
-
includes/class-sacksonweb-data-helper.php (modified) (3 diffs)
-
sacksonweb-data.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
sackson-web-data/trunk/README.txt
r2762047 r2762111 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.0 7 Stable tag: 1.1.5 7 Stable tag: 1.1.5.1 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 51 51 == Changelog == 52 52 53 = 1.1.5.1 = 54 * Missed a check in release 1.1.5, correcting the PHP warning 55 53 56 = 1.1.5 = 54 57 * Corrected a code error about accessing FS_DIRECT when it doesn't exist -
sackson-web-data/trunk/includes/class-sacksonweb-data-helper.php
r2762047 r2762111 7 7 * 8 8 * @link http://data.sacksonweb.com/author 9 * @since 1.1. 09 * @since 1.1.5.1 10 10 * 11 11 * @package Sacksonweb_Data … … 18 18 * 19 19 * 20 * @since 1. 0.020 * @since 1.1.5.1 21 21 * @access protected 22 22 * @var float $how_many_hours_is_data_stale The number of hours that we consider the data to be stale. … … 61 61 62 62 /* If the settings provide an interval other than 1 hour, then set the stale variable instead. */ 63 if ( null !== $sw_option && null !== $sw_option['refresh_every_0'] && .00000000000000000000001 < $sw_option['refresh_every_0'] )63 if ( null !== $sw_option && isset($sw_option['refresh_every_0']) && null !== $sw_option['refresh_every_0'] && .00000000000000000000001 < $sw_option['refresh_every_0'] ) 64 64 { 65 // Default: $hours_data_is_considered_stale = 1; 65 // Default: $hours_data_is_considered_stale = 1; 66 66 $refresh_every_0 = $sw_option['refresh_every_0']; // Refresh every X hours, where X is the number in this field. 67 67 $this->hours_data_is_considered_stale = $refresh_every_0; -
sackson-web-data/trunk/sacksonweb-data.php
r2762047 r2762111 10 10 * 11 11 * @link http://data.sacksonweb.com/author 12 * @since 1.1.5 12 * @since 1.1.5.1 13 13 * @package Sacksonweb_Data 14 14 * … … 17 17 * Plugin URI: http://data.sacksonweb.com 18 18 * Description: A tool to monitor security issues, performance issues, and Wordpress settings that should be changed. 19 * Version: 1.1.5 19 * Version: 1.1.5.1 20 20 * Author: Eric Thornton 21 21 * Author URI: http://data.sacksonweb.com/author … … 35 35 * 36 36 */ 37 define( 'SACKSONWEB_DATA_VERSION', '1.1.5 ' );37 define( 'SACKSONWEB_DATA_VERSION', '1.1.5.1' ); 38 38 39 39 /**
Note: See TracChangeset
for help on using the changeset viewer.