Plugin Directory

Changeset 3012207


Ignore:
Timestamp:
12/19/2023 10:11:02 PM (2 years ago)
Author:
ehops32
Message:

1.2.7

  • Capture sec settings data for sites that it exists on to enhance security further
Location:
sackson-web-data/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sackson-web-data/trunk/README.txt

    r3003535 r3012207  
    55Requires at least: 3.0.1
    66Tested up to: 6.0
    7 Stable tag: 1.2.6
     7Stable tag: 1.2.7
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    5050
    5151== Changelog ==
     52
     53= 1.2.7 =
     54* Capture sec settings data for sites that it exists on to enhance security further
    5255
    5356= 1.2.6 =
  • sackson-web-data/trunk/includes/class-sacksonweb-data-helper.php

    r3003535 r3012207  
    324324        foreach ($fields as $field) {
    325325            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 : '';             
    328329            }
    329330            else {
     
    372373        echo "<script>console.log('Debug Objects: " . $output . "' );</script>";
    373374    }
     375
     376   
    374377
    375378   
     
    578581        if ( $this->doAllTheseDatabaseTablesExist(array($simple_history_context_table, $simple_history_table)) )
    579582        {       
    580             $this->debug_to_console('they do exist');
     583            //$this->debug_to_console('they do exist');
     584            // Add hook for admin <head></head>
     585
    581586            //echo '<script>alert("Yes")</script>';
    582587            /*
  • sackson-web-data/trunk/sacksonweb-data.php

    r3003535 r3012207  
    1010 *
    1111 * @link              http://data.sacksonweb.com/author
    12  * @since             1.2.6
     12 * @since             1.2.7
    1313 * @package           Sacksonweb_Data
    1414 *
     
    1717 * Plugin URI:        http://data.sacksonweb.com
    1818 * Description:       A tool to monitor security issues, performance issues, and Wordpress settings that should be changed.
    19  * Version:           1.2.6
     19 * Version:           1.2.7
    2020 * Author:            Eric Thornton
    2121 * Author URI:        http://data.sacksonweb.com/author
     
    3535 *
    3636 */
    37 define( 'SACKSONWEB_DATA_VERSION', '1.2.6' );
     37define( 'SACKSONWEB_DATA_VERSION', '1.2.7' );
    3838
    3939/**
Note: See TracChangeset for help on using the changeset viewer.