some more get_hostname to getHostName changes
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Thu, 11 Oct 2018 11:24:39 +0000 (13:24 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Thu, 11 Oct 2018 11:24:39 +0000 (13:24 +0200)
libertree/libertree.php
mailstream/mailstream.php
notifyall/notifyall.php
pumpio/pumpio.php
securemail/securemail.php
statusnet/statusnet.php
twitter/twitter.php
xmpp/xmpp.php

index aa4c48b..19512bc 100644 (file)
@@ -181,7 +181,7 @@ function libertree_send(&$a,&$b) {
        $ltree_api_token = PConfig::get($b['uid'],'libertree','libertree_api_token');
        $ltree_url = PConfig::get($b['uid'],'libertree','libertree_url');
        $ltree_blog = "$ltree_url/api/v1/posts/create/?token=$ltree_api_token";
-       $ltree_source = $a->get_hostname();
+       $ltree_source = $a->getHostName();
 
        if ($b['app'] != "")
                $ltree_source .= " (".$b['app'].")";
index 5d9153d..dc44b93 100644 (file)
@@ -91,7 +91,7 @@ function mailstream_addon_admin_post ($a) {
 
 function mailstream_generate_id($a, $uri) {
        // http://www.jwz.org/doc/mid.html
-       $host = $a->get_hostname();
+       $host = $a->getHostName();
        $resource = hash('md5', $uri);
        $message_id = "<" . $resource . "@" . $host . ">";
        logger('mailstream: Generated message ID ' . $message_id . ' for URI ' . $uri, LOGGER_DEBUG);
index ddadc3b..a019303 100644 (file)
@@ -53,7 +53,7 @@ function notifyall_post(App $a)
        }
 
        if (! x(Config::get('config', 'sender_email'))) {
-               $sender_email = 'noreply@' . $a->get_hostname();
+               $sender_email = 'noreply@' . $a->getHostName();
        } else {
                $sender_email = Config::get('config', 'sender_email');
        }
index 2bb5233..6217f4d 100644 (file)
@@ -102,7 +102,7 @@ function pumpio_registerclient(App $a, $host)
        $application_name  = Config::get('pumpio', 'application_name');
 
        if ($application_name == "") {
-               $application_name = $a->get_hostname();
+               $application_name = $a->getHostName();
        }
 
        $adminlist = explode(",", str_replace(" ", "", Config::get('config', 'admin_email')));
@@ -749,7 +749,7 @@ function pumpio_fetchtimeline(App $a, $uid)
                $application_name  = Config::get('pumpio', 'application_name');
        }
        if ($application_name == "") {
-               $application_name = $a->get_hostname();
+               $application_name = $a->getHostName();
        }
 
        $first_time = ($lastdate == "");
index 87941e7..d935160 100644 (file)
@@ -97,7 +97,7 @@ function securemail_settings_post(App &$a, array &$b){
         if ($_POST['securemail-submit'] == L10n::t('Save and send test')) {
             $sitename = Config::get('config', 'sitename');
 
-            $hostname = $a->get_hostname();
+            $hostname = $a->getHostName();
             if (strpos($hostname, ':')) {
                 $hostname = substr($hostname, 0, strpos($hostname, ':'));
             }
index 08c2645..2e6a1f9 100644 (file)
@@ -791,7 +791,7 @@ function statusnet_fetchtimeline(App $a, $uid)
                $application_name = Config::get('statusnet', 'application_name');
        }
        if ($application_name == "") {
-               $application_name = $a->get_hostname();
+               $application_name = $a->getHostName();
        }
 
        $connection = new StatusNetOAuth($api, $ckey, $csecret, $otoken, $osecret);
index 54c330c..5a808d3 100644 (file)
@@ -866,7 +866,7 @@ function twitter_fetchtimeline(App $a, $uid)
        $application_name = Config::get('twitter', 'application_name');
 
        if ($application_name == "") {
-               $application_name = $a->get_hostname();
+               $application_name = $a->getHostName();
        }
 
        $has_picture = false;
@@ -1597,7 +1597,7 @@ function twitter_fetchhometimeline(App $a, $uid)
        $application_name = Config::get('twitter', 'application_name');
 
        if ($application_name == "") {
-               $application_name = $a->get_hostname();
+               $application_name = $a->getHostName();
        }
 
        require_once 'include/items.php';
index 0f8d4b1..e45bd72 100644 (file)
@@ -164,7 +164,7 @@ function xmpp_converse(App $a)
                        PConfig::set(local_user(), "xmpp", "password", $password);
                }
 
-               $jid = $a->user["nickname"] . "@" . $a->get_hostname() . "/converse-" . random_string(5);
+               $jid = $a->user["nickname"] . "@" . $a->getHostName() . "/converse-" . random_string(5);
 
                $auto_login = "auto_login: true,
                        authentication: 'login',