Code style fix
authorAlexander Ebert <ebert@woltlab.com>
Thu, 28 Jul 2016 11:22:02 +0000 (13:22 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Thu, 28 Jul 2016 11:22:08 +0000 (13:22 +0200)
wcfsetup/install/files/lib/system/option/user/GooglePlusUserOptionOutput.class.php

index 6ed9be460161bd6ace5ecdc38428b268f5f5e061..99dfe4fe3045d6f34dec015b512aa8c3fe0c3456 100644 (file)
@@ -22,7 +22,6 @@ class GooglePlusUserOptionOutput implements IUserOptionOutput {
                $url = StringUtil::encodeHTML('https://plus.google.com/'.$value.'/posts');
                $value = StringUtil::encodeHTML($value);
                
-               
                return '<a href="'.$url.'" class="externalURL"'.((EXTERNAL_LINK_REL_NOFOLLOW || EXTERNAL_LINK_TARGET_BLANK) ? (' rel="'.(EXTERNAL_LINK_REL_NOFOLLOW ? 'nofollow' : '').((EXTERNAL_LINK_REL_NOFOLLOW && EXTERNAL_LINK_TARGET_BLANK) ? ' ' : '').(EXTERNAL_LINK_TARGET_BLANK ? 'noopener noreferrer' : '').' me"') : ' rel="me"').(EXTERNAL_LINK_TARGET_BLANK ? ' target="_blank"' : '').'>'.$value.'</a>';
        }
 }