Plugin Directory

Changeset 499702


Ignore:
Timestamp:
02/03/2012 11:56:50 AM (14 years ago)
Author:
evilsocket
Message:

Fixed a bug in email reporting.

Location:
wp-sentinel/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-sentinel/trunk/classes/report.class.php

    r499330 r499702  
    116116                foreach( $this->aAlarms as $aAlarm )
    117117                {
    118                     $sRow = '';
     118                    $sRow = $sRowLayout;
    119119                    foreach( array_keys($aAlarm) as $sKey )
    120120                    {
    121                         $sRow = str_replace( '{'.strtoupper($sKey).'}', $aAlarm[$sKey], $sRowLayout );
     121                        $sRow = str_replace( '{'.strtoupper($sKey).'}', $aAlarm[$sKey], $sRow );
    122122                    }
     123
    123124                    $sRows .= $sRow;
    124125                }
  • wp-sentinel/trunk/classes/sentinel.class.php

    r499342 r499702  
    3131class WPSentinel
    3232{
    33     const VERSION       = '2.0.2';
     33    const VERSION       = '2.0.3';
    3434    const VERSION_FIELD = 'wp_sentinel_version';
    3535
  • wp-sentinel/trunk/readme.txt

    r499342 r499702  
    77Requires at least: 2.8
    88Tested up to: 3.3.1
    9 Stable tag: 2.0.2
     9Stable tag: 2.0.3
    1010
    1111A wordpress security system plugin which will check every HTTP request against a given set of rules to filter out malicious requests.
     
    5757
    5858== Changelog ==
     59
     60= 2.0.3 =
     61* Fixed a bug in email reporting.
    5962
    6063= 2.0.2 =
  • wp-sentinel/trunk/wp-sentinel.php

    r499342 r499702  
    33Plugin Name: WP-Sentinel
    44Plugin URI: http://lab.evilsocket.net/
    5 Version: 2.0.2
     5Version: 2.0.3
    66Author: Simone Margaritelli aka evilsocket
    77Description: WordPress security system.
Note: See TracChangeset for help on using the changeset viewer.