Changeset 499702
- Timestamp:
- 02/03/2012 11:56:50 AM (14 years ago)
- Location:
- wp-sentinel/trunk
- Files:
-
- 4 edited
-
classes/report.class.php (modified) (1 diff)
-
classes/sentinel.class.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-sentinel.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-sentinel/trunk/classes/report.class.php
r499330 r499702 116 116 foreach( $this->aAlarms as $aAlarm ) 117 117 { 118 $sRow = '';118 $sRow = $sRowLayout; 119 119 foreach( array_keys($aAlarm) as $sKey ) 120 120 { 121 $sRow = str_replace( '{'.strtoupper($sKey).'}', $aAlarm[$sKey], $sRow Layout);121 $sRow = str_replace( '{'.strtoupper($sKey).'}', $aAlarm[$sKey], $sRow ); 122 122 } 123 123 124 $sRows .= $sRow; 124 125 } -
wp-sentinel/trunk/classes/sentinel.class.php
r499342 r499702 31 31 class WPSentinel 32 32 { 33 const VERSION = '2.0. 2';33 const VERSION = '2.0.3'; 34 34 const VERSION_FIELD = 'wp_sentinel_version'; 35 35 -
wp-sentinel/trunk/readme.txt
r499342 r499702 7 7 Requires at least: 2.8 8 8 Tested up to: 3.3.1 9 Stable tag: 2.0. 29 Stable tag: 2.0.3 10 10 11 11 A wordpress security system plugin which will check every HTTP request against a given set of rules to filter out malicious requests. … … 57 57 58 58 == Changelog == 59 60 = 2.0.3 = 61 * Fixed a bug in email reporting. 59 62 60 63 = 2.0.2 = -
wp-sentinel/trunk/wp-sentinel.php
r499342 r499702 3 3 Plugin Name: WP-Sentinel 4 4 Plugin URI: http://lab.evilsocket.net/ 5 Version: 2.0. 25 Version: 2.0.3 6 6 Author: Simone Margaritelli aka evilsocket 7 7 Description: WordPress security system.
Note: See TracChangeset
for help on using the changeset viewer.