Changeset 3106866
- Timestamp:
- 06/24/2024 08:31:42 PM (22 months ago)
- Location:
- wps-hide-login
- Files:
-
- 41 added
- 3 edited
-
tags/1.9.16.5 (added)
-
tags/1.9.16.5/assets (added)
-
tags/1.9.16.5/assets/js (added)
-
tags/1.9.16.5/assets/js/functions.js (added)
-
tags/1.9.16.5/autoload.php (added)
-
tags/1.9.16.5/classes (added)
-
tags/1.9.16.5/classes/plugin.php (added)
-
tags/1.9.16.5/classes/singleton.php (added)
-
tags/1.9.16.5/composer.json (added)
-
tags/1.9.16.5/composer.lock (added)
-
tags/1.9.16.5/languages (added)
-
tags/1.9.16.5/languages/wps-hide-login-cs_CZ.mo (added)
-
tags/1.9.16.5/languages/wps-hide-login-cs_CZ.po (added)
-
tags/1.9.16.5/languages/wps-hide-login-da_DK.mo (added)
-
tags/1.9.16.5/languages/wps-hide-login-da_DK.po (added)
-
tags/1.9.16.5/languages/wps-hide-login-es_ES.mo (added)
-
tags/1.9.16.5/languages/wps-hide-login-es_ES.po (added)
-
tags/1.9.16.5/languages/wps-hide-login-fr_FR.mo (added)
-
tags/1.9.16.5/languages/wps-hide-login-fr_FR.po (added)
-
tags/1.9.16.5/languages/wps-hide-login-it_IT.mo (added)
-
tags/1.9.16.5/languages/wps-hide-login-it_IT.po (added)
-
tags/1.9.16.5/languages/wps-hide-login-ru_RU.mo (added)
-
tags/1.9.16.5/languages/wps-hide-login-ru_RU.po (added)
-
tags/1.9.16.5/languages/wps-hide-login.pot (added)
-
tags/1.9.16.5/readme.txt (added)
-
tags/1.9.16.5/uninstall.php (added)
-
tags/1.9.16.5/vendor (added)
-
tags/1.9.16.5/vendor/autoload.php (added)
-
tags/1.9.16.5/vendor/composer (added)
-
tags/1.9.16.5/vendor/composer/ClassLoader.php (added)
-
tags/1.9.16.5/vendor/composer/InstalledVersions.php (added)
-
tags/1.9.16.5/vendor/composer/LICENSE (added)
-
tags/1.9.16.5/vendor/composer/autoload_classmap.php (added)
-
tags/1.9.16.5/vendor/composer/autoload_namespaces.php (added)
-
tags/1.9.16.5/vendor/composer/autoload_psr4.php (added)
-
tags/1.9.16.5/vendor/composer/autoload_real.php (added)
-
tags/1.9.16.5/vendor/composer/autoload_static.php (added)
-
tags/1.9.16.5/vendor/composer/installed.json (added)
-
tags/1.9.16.5/vendor/composer/installed.php (added)
-
tags/1.9.16.5/vendor/composer/platform_check.php (added)
-
tags/1.9.16.5/wps-hide-login.php (added)
-
trunk/classes/plugin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wps-hide-login.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wps-hide-login/trunk/classes/plugin.php
r3105541 r3106866 694 694 695 695 if ( ! is_user_logged_in() ) { 696 if ( ( is_plugin_active( 'gravityforms/gravityforms.php' ) || ( is_multisite() && is_plugin_active_for_network( 'gravityforms/gravityforms.php' ) ) ) && isset( $_GET['gf_page'] ) ) { 697 return $origin_url; 696 $theme = wp_get_theme(); 697 if ( 'BuddyBoss Theme' !== $theme->name ) { 698 if ( is_plugin_active( 'gravityforms/gravityforms.php' ) && isset( $_GET['gf_page'] ) ) { 699 return $origin_url; 700 } 698 701 } 699 702 } -
wps-hide-login/trunk/readme.txt
r3105541 r3106866 7 7 Tested up to: 6.5 8 8 Requires PHP: 7.0 9 Stable tag: 1.9.16. 49 Stable tag: 1.9.16.5 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 140 140 141 141 == Changelog == 142 143 = 1.9.16.5 = 144 * Fix Fatal Error with BuddyBoss 142 145 143 146 = 1.9.16.4 = -
wps-hide-login/trunk/wps-hide-login.php
r3105541 r3106866 6 6 Author: WPServeur, NicolasKulka, wpformation 7 7 Author URI: https://wpserveur.net 8 Version: 1.9.16. 48 Version: 1.9.16.5 9 9 Requires at least: 4.1 10 10 Tested up to: 6.5 … … 22 22 23 23 // Plugin constants 24 define( 'WPS_HIDE_LOGIN_VERSION', '1.9.16. 4' );24 define( 'WPS_HIDE_LOGIN_VERSION', '1.9.16.5' ); 25 25 define( 'WPS_HIDE_LOGIN_FOLDER', 'wps-hide-login' ); 26 26
Note: See TracChangeset
for help on using the changeset viewer.