]> git.mxchange.org Git - friendica.git/blobdiff - mod/api.php
Merge pull request #4243 from MrPetovan/task/switch-to-array-new-style
[friendica.git] / mod / api.php
index fdd9790c093f4446858c0f319f16b23195fbaee6..a402bc99342ae936d5407e442cc59b6d2aa4aa00 100644 (file)
@@ -3,6 +3,7 @@
 use Friendica\App;
 use Friendica\Core\Config;
 use Friendica\Database\DBM;
+use Friendica\Module\Login;
 
 require_once('include/api.php');
 
@@ -76,19 +77,19 @@ function api_content(App $a)
                        }
 
                        $tpl = get_markup_template("oauth_authorize_done.tpl");
-                       $o = replace_macros($tpl, array(
+                       $o = replace_macros($tpl, [
                                '$title' => t('Authorize application connection'),
                                '$info' => t('Return to your app and insert this Securty Code:'),
                                '$code' => $verifier,
-                       ));
+                       ]);
 
                        return $o;
                }
 
                if (!local_user()) {
                        /// @TODO We need login form to redirect to this page
-                       notice( t('Please login to continue.') . EOL );
-                       return login(false,$request->get_parameters());
+                       notice(t('Please login to continue.') . EOL);
+                       return Login::form($a->query_string, false, $request->get_parameters());
                }
                //FKOAuth1::loginUser(4);
 
@@ -98,13 +99,13 @@ function api_content(App $a)
                }
 
                $tpl = get_markup_template('oauth_authorize.tpl');
-               $o = replace_macros($tpl, array(
+               $o = replace_macros($tpl, [
                        '$title' => t('Authorize application connection'),
                        '$app' => $app,
                        '$authorize' => t('Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?'),
                        '$yes' => t('Yes'),
                        '$no' => t('No'),
-               ));
+               ]);
 
                return $o;
        }