Plugin Directory

Changeset 3439534


Ignore:
Timestamp:
01/14/2026 12:46:39 PM (2 months ago)
Author:
nsp-code
Message:

Version: 2.8.1

Location:
wp-hide-security-enhancer
Files:
232 added
3 edited

Legend:

Unmodified
Added
Removed
  • wp-hide-security-enhancer/trunk/include/wph.class.php

    r3412372 r3439534  
    106106                   
    107107                    //handle the compatibility
    108                     $this->plugins_themes_compatibility();
     108                    $this->third_party_compatibility();
    109109                   
    110110                    $this->_modules_components_run();
     
    15771577            *     
    15781578            */
    1579             function plugins_themes_compatibility()
     1579            function third_party_compatibility()
    15801580                {
    15811581                   
     
    18671867                        ob_start( array($this, 'ob_start_callback'));   
    18681868                }
    1869                
    1870                
    1871             function log_save($text)
    1872                 {
    1873                    
    1874                     $myfile     = fopen(WPH_PATH . "/debug.txt", "a") or die("Unable to open file!");
    1875                     $txt        =  $text   .   "\n";
    1876                     fwrite($myfile, $txt);
    1877                     fclose($myfile);   
    1878                    
    1879                 }
    1880 
    18811869           
    18821870        }
  • wp-hide-security-enhancer/trunk/readme.txt

    r3420002 r3439534  
    466466== Changelog ==
    467467
     468= 2.8.1 =
     469* Removed deprecated log_save method.
     470* Slight code improvements for better readability.
     471
    468472= 2.8 =
    469473* Output the module description HTML as is, instead using wp_kses to avoid stripping out the tags.
  • wp-hide-security-enhancer/trunk/wp-hide.php

    r3420002 r3439534  
    66* Author: Nsp Code
    77* Author URI: http://www.nsp-code.com
    8 * Version: 2.8
     8* Version: 2.8.1
    99* Text Domain: wp-hide-security-enhancer
    1010* Domain Path: /languages/
     
    6666            //reprocess components if the permalinks where applied
    6767            if($wph->custom_permalinks_applied   === TRUE)
    68                 {
    69                     $wph->_modules_components_run();
    70                 }
     68                $wph->_modules_components_run();
    7169           
    7270        }
Note: See TracChangeset for help on using the changeset viewer.