Changeset 3289533
- Timestamp:
- 05/08/2025 05:22:59 AM (8 months ago)
- Location:
- login-by-referer
- Files:
-
- 15 added
- 4 edited
-
tags/1.0.6 (added)
-
tags/1.0.6/LICENSE.txt (added)
-
tags/1.0.6/assets (added)
-
tags/1.0.6/assets/login-by-referer.css (added)
-
tags/1.0.6/assets/login-by-referer.css.map (added)
-
tags/1.0.6/assets/login-by-referer.min.css (added)
-
tags/1.0.6/assets/login-by-referer.min.css.map (added)
-
tags/1.0.6/assets/login-by-referer.scss (added)
-
tags/1.0.6/class (added)
-
tags/1.0.6/class/class-loginbyreferer-admin.php (added)
-
tags/1.0.6/class/class-loginbyreferer-core.php (added)
-
tags/1.0.6/class/trait-singleton.php (added)
-
tags/1.0.6/login-by-referer.php (added)
-
tags/1.0.6/readme.txt (added)
-
tags/1.0.6/uninstall.php (added)
-
trunk/class/class-loginbyreferer-admin.php (modified) (2 diffs)
-
trunk/class/class-loginbyreferer-core.php (modified) (3 diffs)
-
trunk/login-by-referer.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
login-by-referer/trunk/class/class-loginbyreferer-admin.php
r3027952 r3289533 140 140 ), 141 141 ); 142 143 142 } 144 143 … … 164 163 esc_html( get_option( LoginByReferer_Core::PLUGIN_PREFIX . '_referer_allowed' ) ) 165 164 ); 166 167 165 } 168 166 -
login-by-referer/trunk/class/class-loginbyreferer-core.php
r3192859 r3289533 23 23 * Plugin constant. 24 24 */ 25 const PLUGIN_VERSION = '1.0. 5';25 const PLUGIN_VERSION = '1.0.6'; 26 26 const PLUGIN_PREFIX = 'login-by-referer'; 27 27 const PLUGIN_GITHUB = 'https://github.com/web83info/login-by-referer'; … … 68 68 } 69 69 70 // Load textdomain.71 add_action( 'admin_menu', array( $this, 'load_textdomain' ) );72 73 70 // Load CSS and JS. 74 71 add_action( 'wp_enqueue_scripts', array( $this, 'load_css_js' ) ); … … 82 79 // Add logout button on admin bar. 83 80 add_action( 'admin_bar_menu', array( $this, 'add_logout_in_admin_bar' ), 9999 ); 84 }85 86 /**87 * Load textdomain.88 *89 * @return void90 */91 public function load_textdomain() {92 load_plugin_textdomain( self::PLUGIN_PREFIX );93 81 } 94 82 -
login-by-referer/trunk/login-by-referer.php
r3192859 r3289533 12 12 * Plugin URI: 13 13 * Description: This plugin allows a user to login by specific referer. 14 * Version: 1.0. 514 * Version: 1.0.6 15 15 * Requires at least: 6.0 16 * Tested up to: 6. 716 * Tested up to: 6.8 17 17 * Requires PHP: 7.4 18 18 * Author: web83info <[email protected]> -
login-by-referer/trunk/readme.txt
r3192859 r3289533 4 4 Tags: login, referer 5 5 Requires at least: 6.2 6 Tested up to: 6. 76 Tested up to: 6.8 7 7 Requires PHP: 7.4 8 Stable tag: 1.0. 58 Stable tag: 1.0.6 9 9 License: GPL v2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 20 20 21 21 == Changelog == 22 23 = 1.0.6 - 2025-05-08 = 24 * Fix: Delete textdomain. 25 * Tested up to: 6.8. 22 26 23 27 = 1.0.5 - 2024-11-20 =
Note: See TracChangeset
for help on using the changeset viewer.