]> git.mxchange.org Git - friendica.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Tue, 20 Dec 2016 10:39:53 +0000 (11:39 +0100)
committerRoland Häder <roland@mxchange.org>
Tue, 20 Dec 2016 10:39:53 +0000 (11:39 +0100)
- added curly braces + spaces
- added todo about testing empty/non-empty strings

Signed-off-by: Roland Häder <roland@mxchange.org>
mod/settings.php

index 14ef33fc8672d393639d6aa18555c868bf09c8e1..97d4f5f603f6f6a10d5c11324b9158574e0b964a 100644 (file)
@@ -824,8 +824,10 @@ function settings_content(App &$a) {
 
                $settings_connectors .= mini_group_select(local_user(), $default_group, t("Default group for OStatus contacts"));
 
-               if ($legacy_contact != "")
+               /// @TODO Found to much different usage to test empty/non-empty strings (e.g. empty(), trim() == '' ) which is wanted?
+               if ($legacy_contact != "") {
                        $a->page['htmlhead'] = '<meta http-equiv="refresh" content="0; URL='.App::get_baseurl().'/ostatus_subscribe?url='.urlencode($legacy_contact).'">';
+               }
 
                $settings_connectors .= '<div id="legacy-contact-wrapper" class="field input">';
                $settings_connectors .= '<label id="legacy-contact-label" for="snautofollow-checkbox">'. t('Your legacy GNU Social account'). '</label>';