diff --git a/wp-content/plugins/cloudron-sso/cloudron-sso.php b/wp-content/plugins/cloudron-sso/cloudron-sso.php index 8b79ddf7..f1b502c4 100644 --- a/wp-content/plugins/cloudron-sso/cloudron-sso.php +++ b/wp-content/plugins/cloudron-sso/cloudron-sso.php @@ -36,8 +36,7 @@ * Change login button text */ add_filter('openid-connect-generic-login-button-text', function( $text ) { - $text = __('Login with Cloudron'); - + $text = __('Login with ') . getenv('CLOUDRON_OIDC_PROVIDER_NAME') ?: "Cloudron"; return $text; });