Plugin Directory

Changeset 3401240


Ignore:
Timestamp:
11/23/2025 10:42:03 AM (3 weeks ago)
Author:
ishitaka
Message:

Update to version 3.10.5 from GitHub

Location:
xo-security
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • xo-security/tags/3.10.5/inc/class-xo-security-two-factor.php

    r3117616 r3401240  
    292292            </p>
    293293            <p class="submit">
    294                 <input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_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' ); ?>" />
    295295                <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
    296296                <input type="hidden" name="testcookie" value="1" />
  • xo-security/tags/3.10.5/inc/class-xo-security.php

    r3070835 r3401240  
    3838     */
    3939    public function __construct() {
    40         load_plugin_textdomain( 'xo-security' );
    41 
    4240        if ( is_admin() ) {
    4341            require_once __DIR__ . '/class-xo-login-log-list-table.php';
     
    455453     */
    456454    public function login_form_defaults( $defaults ) {
    457         $defaults['label_username'] = __( 'Username' );
     455        $defaults['label_username'] = __( 'Username', 'xo-security' );
    458456        return $defaults;
    459457    }
     
    469467        if ( 'wp-login.php' === $GLOBALS['pagenow'] ) {
    470468            if ( 'default' === $domain && 'Username or Email Address' === $text ) {
    471                 $translation = __( 'Username' );
     469                $translation = __( 'Username', 'xo-security' );
    472470            }
    473471        }
     
    833831
    834832        $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 ) {
    836834            $path = ABSPATH . $login_page_filename;
    837835            if ( ! file_exists( $path ) ) {
  • xo-security/tags/3.10.5/readme.txt

    r3276990 r3401240  
    33Tags: security, login, two factor, brute force, maintenance
    44Requires at least: 4.9
    5 Tested up to: 6.8
     5Tested up to: 6.9
    66Requires PHP: 5.6
    77Stable tag: 3.10.4
     
    7272== Changelog ==
    7373
     74= 3.10.5 =
     75
     76* Supported WordPress 6.9.
     77* Fixed a bug that sometimes prevented access to the login page.
     78
    7479= 3.10.4 =
    7580
  • xo-security/tags/3.10.5/xo-security.php

    r3117616 r3401240  
    1111 * Plugin URI:        https://xakuro.com/wordpress/xo-security/
    1212 * Description:       XO Security is a plugin to enhance login related security.
    13  * Version:           3.10.4
     13 * Version:           3.10.5
    1414 * Requires at least: 4.9
    1515 * Requires PHP:      5.6
     
    2525}
    2626
    27 define( 'XO_SECURITY_VERSION', '3.10.4' );
     27define( 'XO_SECURITY_VERSION', '3.10.5' );
    2828define( 'XO_SECURITY_URL', plugins_url( '', __FILE__ ) );
    2929define( 'XO_SECURITY_DIR', __DIR__ );
  • xo-security/trunk/inc/class-xo-security-two-factor.php

    r3117616 r3401240  
    292292            </p>
    293293            <p class="submit">
    294                 <input type="submit" name="wp-submit" id="wp-submit" class="button button-primary button-large" value="<?php esc_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' ); ?>" />
    295295                <input type="hidden" name="redirect_to" value="<?php echo esc_attr( $redirect_to ); ?>" />
    296296                <input type="hidden" name="testcookie" value="1" />
  • xo-security/trunk/inc/class-xo-security.php

    r3070835 r3401240  
    3838     */
    3939    public function __construct() {
    40         load_plugin_textdomain( 'xo-security' );
    41 
    4240        if ( is_admin() ) {
    4341            require_once __DIR__ . '/class-xo-login-log-list-table.php';
     
    455453     */
    456454    public function login_form_defaults( $defaults ) {
    457         $defaults['label_username'] = __( 'Username' );
     455        $defaults['label_username'] = __( 'Username', 'xo-security' );
    458456        return $defaults;
    459457    }
     
    469467        if ( 'wp-login.php' === $GLOBALS['pagenow'] ) {
    470468            if ( 'default' === $domain && 'Username or Email Address' === $text ) {
    471                 $translation = __( 'Username' );
     469                $translation = __( 'Username', 'xo-security' );
    472470            }
    473471        }
     
    833831
    834832        $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 ) {
    836834            $path = ABSPATH . $login_page_filename;
    837835            if ( ! file_exists( $path ) ) {
  • xo-security/trunk/readme.txt

    r3276990 r3401240  
    33Tags: security, login, two factor, brute force, maintenance
    44Requires at least: 4.9
    5 Tested up to: 6.8
     5Tested up to: 6.9
    66Requires PHP: 5.6
    77Stable tag: 3.10.4
     
    7272== Changelog ==
    7373
     74= 3.10.5 =
     75
     76* Supported WordPress 6.9.
     77* Fixed a bug that sometimes prevented access to the login page.
     78
    7479= 3.10.4 =
    7580
  • xo-security/trunk/xo-security.php

    r3117616 r3401240  
    1111 * Plugin URI:        https://xakuro.com/wordpress/xo-security/
    1212 * Description:       XO Security is a plugin to enhance login related security.
    13  * Version:           3.10.4
     13 * Version:           3.10.5
    1414 * Requires at least: 4.9
    1515 * Requires PHP:      5.6
     
    2525}
    2626
    27 define( 'XO_SECURITY_VERSION', '3.10.4' );
     27define( 'XO_SECURITY_VERSION', '3.10.5' );
    2828define( 'XO_SECURITY_URL', plugins_url( '', __FILE__ ) );
    2929define( 'XO_SECURITY_DIR', __DIR__ );
Note: See TracChangeset for help on using the changeset viewer.