]> git.mxchange.org Git - friendica-addons.git/commitdiff
Twitter: typos
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 13 Jan 2013 11:32:31 +0000 (12:32 +0100)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 13 Jan 2013 11:32:31 +0000 (12:32 +0100)
twitter/twitter.php

index 7bf01eff8f197346d4e72d382c092b63531dccaa..0452db60360876306ed31ac4b82fb7fb1c284db6 100755 (executable)
@@ -543,7 +543,7 @@ function twitter_post_hook(&$a,&$b) {
 function twitter_plugin_admin_post(&$a){
        $consumerkey    =       ((x($_POST,'consumerkey'))              ? notags(trim($_POST['consumerkey']))   : '');
        $consumersecret =       ((x($_POST,'consumersecret'))   ? notags(trim($_POST['consumersecret'])): '');
-        $applicationname = ((x($_POST, 'application-name')) ? notags(trin($_POST['applicationname'])):'');
+        $applicationname = ((x($_POST, 'applicationname')) ? notags(trim($_POST['applicationname'])):'');
        set_config('twitter','consumerkey',$consumerkey);
        set_config('twitter','consumersecret',$consumersecret);
        set_config('twitter','application_name',$applicationname);
@@ -557,7 +557,7 @@ function twitter_plugin_admin(&$a, &$o){
                                                                // name, label, value, help, [extra values]
                '$consumerkey' => array('consumerkey', t('Consumer key'),  get_config('twitter', 'consumerkey' ), ''),
                 '$consumersecret' => array('consumersecret', t('Consumer secret'),  get_config('twitter', 'consumersecret' ), ''),
-                '$applicationname' => array('applicationname', t('Name of the Twitter Application'), get_config('twitter','applicationname'),t('set this to avoid mirroring postings from ~friendica back to ~friendica'))
+                '$applicationname' => array('applicationname', t('Name of the Twitter Application'), get_config('twitter','application_name'),t('set this to avoid mirroring postings from ~friendica back to ~friendica'))
        ));
 }