Changeset 3012207
- Timestamp:
- 12/19/2023 10:11:02 PM (2 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
r3003535 r3012207 5 5 Requires at least: 3.0.1 6 6 Tested up to: 6.0 7 Stable tag: 1.2. 67 Stable tag: 1.2.7 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 50 50 51 51 == Changelog == 52 53 = 1.2.7 = 54 * Capture sec settings data for sites that it exists on to enhance security further 52 55 53 56 = 1.2.6 = -
sackson-web-data/trunk/includes/class-sacksonweb-data-helper.php
r3003535 r3012207 324 324 foreach ($fields as $field) { 325 325 if ( 'itsec-storage' == $field ) { 326 $itsec_storage = get_option($field); 327 $this->collected_data['itsec_storage_recaptcha'] = is_array($itsec_storage) && isset($itsec_storage['recaptcha']) ? $itsec_storage['recaptcha'] : ''; 326 $itsec_storage = @get_option($field); 327 $this->collected_data['itsec_storage_recaptcha'] = isset($itsec_storage) && is_array($itsec_storage) && isset($itsec_storage['recaptcha']) ? $itsec_storage['recaptcha'] : ''; 328 $this->collected_data['itsec_storage'] = isset($itsec_storage) && is_array($itsec_storage) ? $itsec_storage : ''; 328 329 } 329 330 else { … … 372 373 echo "<script>console.log('Debug Objects: " . $output . "' );</script>"; 373 374 } 375 376 374 377 375 378 … … 578 581 if ( $this->doAllTheseDatabaseTablesExist(array($simple_history_context_table, $simple_history_table)) ) 579 582 { 580 $this->debug_to_console('they do exist'); 583 //$this->debug_to_console('they do exist'); 584 // Add hook for admin <head></head> 585 581 586 //echo '<script>alert("Yes")</script>'; 582 587 /* -
sackson-web-data/trunk/sacksonweb-data.php
r3003535 r3012207 10 10 * 11 11 * @link http://data.sacksonweb.com/author 12 * @since 1.2. 612 * @since 1.2.7 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.2. 619 * Version: 1.2.7 20 20 * Author: Eric Thornton 21 21 * Author URI: http://data.sacksonweb.com/author … … 35 35 * 36 36 */ 37 define( 'SACKSONWEB_DATA_VERSION', '1.2. 6' );37 define( 'SACKSONWEB_DATA_VERSION', '1.2.7' ); 38 38 39 39 /**
Note: See TracChangeset
for help on using the changeset viewer.