Changeset 715352
- Timestamp:
- 05/19/2013 09:11:27 PM (13 years ago)
- Location:
- better-wp-security
- Files:
-
- 67 added
- 3 edited
-
tags/3.5.2 (added)
-
tags/3.5.2/backups (added)
-
tags/3.5.2/backups/index.php (added)
-
tags/3.5.2/better-wp-security.php (added)
-
tags/3.5.2/images (added)
-
tags/3.5.2/images/index.php (added)
-
tags/3.5.2/images/shield-large.png (added)
-
tags/3.5.2/images/shield-small.png (added)
-
tags/3.5.2/inc (added)
-
tags/3.5.2/inc/admin (added)
-
tags/3.5.2/inc/admin/common.php (added)
-
tags/3.5.2/inc/admin/construct.php (added)
-
tags/3.5.2/inc/admin/content.php (added)
-
tags/3.5.2/inc/admin/css (added)
-
tags/3.5.2/inc/admin/css/style.css (added)
-
tags/3.5.2/inc/admin/hackrepair-apache.inc (added)
-
tags/3.5.2/inc/admin/hackrepair-nginx.inc (added)
-
tags/3.5.2/inc/admin/index.php (added)
-
tags/3.5.2/inc/admin/process.php (added)
-
tags/3.5.2/inc/admin/tables.php (added)
-
tags/3.5.2/inc/admin/wpcontent.php (added)
-
tags/3.5.2/inc/auth.php (added)
-
tags/3.5.2/inc/backup.php (added)
-
tags/3.5.2/inc/filecheck.php (added)
-
tags/3.5.2/inc/index.php (added)
-
tags/3.5.2/inc/secure.php (added)
-
tags/3.5.2/inc/setup.php (added)
-
tags/3.5.2/index.php (added)
-
tags/3.5.2/languages (added)
-
tags/3.5.2/languages/better-wp-security-es_ES.mo (added)
-
tags/3.5.2/languages/better-wp-security-es_ES.po (added)
-
tags/3.5.2/languages/better-wp-security-fr_FR.mo (added)
-
tags/3.5.2/languages/better-wp-security-fr_FR.po (added)
-
tags/3.5.2/languages/better-wp-security-fr_FR_HI.mo (added)
-
tags/3.5.2/languages/better-wp-security-fr_FR_HI.po (added)
-
tags/3.5.2/languages/better-wp-security-lt_LT.mo (added)
-
tags/3.5.2/languages/better-wp-security-lt_LT.po (added)
-
tags/3.5.2/languages/better-wp-security-ru_RU.mo (added)
-
tags/3.5.2/languages/better-wp-security-ru_RU.po (added)
-
tags/3.5.2/languages/better-wp-security-sk_SK.mo (added)
-
tags/3.5.2/languages/better-wp-security-sk_SK.po (added)
-
tags/3.5.2/languages/better-wp-security-tl_TL.mo (added)
-
tags/3.5.2/languages/better-wp-security-tl_TL.po (added)
-
tags/3.5.2/languages/better-wp-security-tr_TR.mo (added)
-
tags/3.5.2/languages/better-wp-security-tr_TR.po (added)
-
tags/3.5.2/languages/better-wp-security.pot (added)
-
tags/3.5.2/languages/index.php (added)
-
tags/3.5.2/lib (added)
-
tags/3.5.2/lib/bit51 (added)
-
tags/3.5.2/lib/bit51/bit51.css (added)
-
tags/3.5.2/lib/bit51/bit51.php (added)
-
tags/3.5.2/lib/bit51/foolic_validation_v1_1.php (added)
-
tags/3.5.2/lib/bit51/images (added)
-
tags/3.5.2/lib/bit51/images/bit51-small.png (added)
-
tags/3.5.2/lib/bit51/images/bit51.png (added)
-
tags/3.5.2/lib/bit51/images/facebook.png (added)
-
tags/3.5.2/lib/bit51/images/google.png (added)
-
tags/3.5.2/lib/bit51/images/index.php (added)
-
tags/3.5.2/lib/bit51/images/subscribe.png (added)
-
tags/3.5.2/lib/bit51/images/twitter.png (added)
-
tags/3.5.2/lib/bit51/index.php (added)
-
tags/3.5.2/lib/index.php (added)
-
tags/3.5.2/readme.txt (added)
-
tags/3.5.2/screenshot-1.png (added)
-
tags/3.5.2/screenshot-2.png (added)
-
tags/3.5.2/screenshot-3.png (added)
-
tags/3.5.2/screenshot-4.png (added)
-
trunk/better-wp-security.php (modified) (2 diffs)
-
trunk/inc/backup.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
better-wp-security/trunk/better-wp-security.php
r715111 r715352 4 4 Plugin URI: http://bit51.com/software/better-wp-security/ 5 5 Description: Helps protect your Wordpress installation from attackers. Hardens standard Wordpress security by hiding vital areas of your site, protecting access to important files via htaccess, preventing brute-force login attempts, detecting attack attempts, and more. 6 Version: 3.5. 16 Version: 3.5.2 7 7 Text Domain: better-wp-security 8 8 Domain Path: /languages … … 20 20 class bit51_bwps extends Bit51Foo { 21 21 22 public $pluginversion = '306 1'; //current plugin version22 public $pluginversion = '3062'; //current plugin version 23 23 24 24 //important plugin information -
better-wp-security/trunk/inc/backup.php
r715022 r715352 90 90 91 91 $row[$j] = addslashes( $row[$j] ); 92 $row[$j] = preg_replace( PHP_EOL, "\n", $row[$j] );92 $row[$j] = preg_replace( '#' . PHP_EOL . '#', "\n", $row[$j] ); 93 93 94 94 if ( isset( $row[$j] ) ) { -
better-wp-security/trunk/readme.txt
r715111 r715352 6 6 Requires at least: 3.5 7 7 Tested up to: 3.6 8 Stable tag: 3.5. 18 Stable tag: 3.5.2 9 9 10 10 The easiest, most effective way to secure WordPress. Improve the security of any WordPress site in seconds. … … 156 156 == Changelog == 157 157 158 == 3.5.1 == 158 = 3.5.2 = 159 * Fixed error message that could appear when creating backups 160 * Correct Changelog not displaying correctly on WordPress.org after version 3.5.1 161 162 = 3.5.1 = 159 163 * Replaced Turkish language version lost in when tagging 3.5 in the WordPress.org repository 160 164 * Solved a conflict with other Bit51 plugins that use the common Bit51 class
Note: See TracChangeset
for help on using the changeset viewer.