Changeset 3401240
- Timestamp:
- 11/23/2025 10:42:03 AM (3 weeks ago)
- Location:
- xo-security
- Files:
-
- 8 edited
- 1 copied
-
tags/3.10.5 (copied) (copied from xo-security/trunk)
-
tags/3.10.5/inc/class-xo-security-two-factor.php (modified) (1 diff)
-
tags/3.10.5/inc/class-xo-security.php (modified) (4 diffs)
-
tags/3.10.5/readme.txt (modified) (2 diffs)
-
tags/3.10.5/xo-security.php (modified) (2 diffs)
-
trunk/inc/class-xo-security-two-factor.php (modified) (1 diff)
-
trunk/inc/class-xo-security.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/xo-security.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
xo-security/tags/3.10.5/inc/class-xo-security-two-factor.php
r3117616 r3401240 292 292 </p> 293 293 <p class="submit"> 294 <input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php e sc_attr_e( 'Log In' ); ?>" />294 <input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php echo esc_attr( 'Log In' ); ?>" /> 295 295 <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" /> 296 296 <input type="hidden" name="testcookie" value="1" /> -
xo-security/tags/3.10.5/inc/class-xo-security.php
r3070835 r3401240 38 38 */ 39 39 public function __construct() { 40 load_plugin_textdomain( 'xo-security' );41 42 40 if ( is_admin() ) { 43 41 require_once __DIR__ . '/class-xo-login-log-list-table.php'; … … 455 453 */ 456 454 public function login_form_defaults( $defaults ) { 457 $defaults['label_username'] = __( 'Username' );455 $defaults['label_username'] = __( 'Username', 'xo-security' ); 458 456 return $defaults; 459 457 } … … 469 467 if ( 'wp-login.php' === $GLOBALS['pagenow'] ) { 470 468 if ( 'default' === $domain && 'Username or Email Address' === $text ) { 471 $translation = __( 'Username' );469 $translation = __( 'Username', 'xo-security' ); 472 470 } 473 471 } … … 833 831 834 832 $login_page_filename = ( isset( $this->options['login_page_name'] ) ? $this->options['login_page_name'] . '.php' : '' ); 835 if ( $wp->request=== $login_page_filename ) {833 if ( basename($wp->request) === $login_page_filename ) { 836 834 $path = ABSPATH . $login_page_filename; 837 835 if ( ! file_exists( $path ) ) { -
xo-security/tags/3.10.5/readme.txt
r3276990 r3401240 3 3 Tags: security, login, two factor, brute force, maintenance 4 4 Requires at least: 4.9 5 Tested up to: 6. 85 Tested up to: 6.9 6 6 Requires PHP: 5.6 7 7 Stable tag: 3.10.4 … … 72 72 == Changelog == 73 73 74 = 3.10.5 = 75 76 * Supported WordPress 6.9. 77 * Fixed a bug that sometimes prevented access to the login page. 78 74 79 = 3.10.4 = 75 80 -
xo-security/tags/3.10.5/xo-security.php
r3117616 r3401240 11 11 * Plugin URI: https://xakuro.com/wordpress/xo-security/ 12 12 * Description: XO Security is a plugin to enhance login related security. 13 * Version: 3.10. 413 * Version: 3.10.5 14 14 * Requires at least: 4.9 15 15 * Requires PHP: 5.6 … … 25 25 } 26 26 27 define( 'XO_SECURITY_VERSION', '3.10. 4' );27 define( 'XO_SECURITY_VERSION', '3.10.5' ); 28 28 define( 'XO_SECURITY_URL', plugins_url( '', __FILE__ ) ); 29 29 define( 'XO_SECURITY_DIR', __DIR__ ); -
xo-security/trunk/inc/class-xo-security-two-factor.php
r3117616 r3401240 292 292 </p> 293 293 <p class="submit"> 294 <input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php e sc_attr_e( 'Log In' ); ?>" />294 <input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php echo esc_attr( 'Log In' ); ?>" /> 295 295 <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" /> 296 296 <input type="hidden" name="testcookie" value="1" /> -
xo-security/trunk/inc/class-xo-security.php
r3070835 r3401240 38 38 */ 39 39 public function __construct() { 40 load_plugin_textdomain( 'xo-security' );41 42 40 if ( is_admin() ) { 43 41 require_once __DIR__ . '/class-xo-login-log-list-table.php'; … … 455 453 */ 456 454 public function login_form_defaults( $defaults ) { 457 $defaults['label_username'] = __( 'Username' );455 $defaults['label_username'] = __( 'Username', 'xo-security' ); 458 456 return $defaults; 459 457 } … … 469 467 if ( 'wp-login.php' === $GLOBALS['pagenow'] ) { 470 468 if ( 'default' === $domain && 'Username or Email Address' === $text ) { 471 $translation = __( 'Username' );469 $translation = __( 'Username', 'xo-security' ); 472 470 } 473 471 } … … 833 831 834 832 $login_page_filename = ( isset( $this->options['login_page_name'] ) ? $this->options['login_page_name'] . '.php' : '' ); 835 if ( $wp->request=== $login_page_filename ) {833 if ( basename($wp->request) === $login_page_filename ) { 836 834 $path = ABSPATH . $login_page_filename; 837 835 if ( ! file_exists( $path ) ) { -
xo-security/trunk/readme.txt
r3276990 r3401240 3 3 Tags: security, login, two factor, brute force, maintenance 4 4 Requires at least: 4.9 5 Tested up to: 6. 85 Tested up to: 6.9 6 6 Requires PHP: 5.6 7 7 Stable tag: 3.10.4 … … 72 72 == Changelog == 73 73 74 = 3.10.5 = 75 76 * Supported WordPress 6.9. 77 * Fixed a bug that sometimes prevented access to the login page. 78 74 79 = 3.10.4 = 75 80 -
xo-security/trunk/xo-security.php
r3117616 r3401240 11 11 * Plugin URI: https://xakuro.com/wordpress/xo-security/ 12 12 * Description: XO Security is a plugin to enhance login related security. 13 * Version: 3.10. 413 * Version: 3.10.5 14 14 * Requires at least: 4.9 15 15 * Requires PHP: 5.6 … … 25 25 } 26 26 27 define( 'XO_SECURITY_VERSION', '3.10. 4' );27 define( 'XO_SECURITY_VERSION', '3.10.5' ); 28 28 define( 'XO_SECURITY_URL', plugins_url( '', __FILE__ ) ); 29 29 define( 'XO_SECURITY_DIR', __DIR__ );
Note: See TracChangeset
for help on using the changeset viewer.