]> git.mxchange.org Git - friendica-addons.git/commitdiff
returned ljpost to same as in friendica/friendica-addons
authorTony Baldwin <tony@baldwinsoftware.com>
Fri, 2 Mar 2012 23:54:24 +0000 (18:54 -0500)
committerTony Baldwin <tony@baldwinsoftware.com>
Fri, 2 Mar 2012 23:54:24 +0000 (18:54 -0500)
rather than make it offer other sites, I am writing separate plugins
for separate sites.
I already have a dreamwidth one written, as can be seen in my repo.
Can/maybe will write up insanejournal, deadjournal, blurty, etc.
eventually, too

ljpost/ljpost.php

index 3084b8bd3a90a0356535fce67179584687e7c7b3..8431b134d81cba6643f9552f6b4c0f547034d7dc 100644 (file)
@@ -61,7 +61,6 @@ function ljpost_settings(&$a,&$s) {
 
        $lj_username = get_pconfig(local_user(), 'ljpost', 'lj_username');
        $lj_password = get_pconfig(local_user(), 'ljpost', 'lj_password');
-       $lj_url = get_pconfig(local_user(), 'ljpost', 'lj_url');
 
 
     /* Add some HTML to the existing form */
@@ -83,11 +82,6 @@ function ljpost_settings(&$a,&$s) {
     $s .= '<input id="ljpost-password" type="password" name="lj_password" value="' . $lj_password . '" />';
     $s .= '</div><div class="clear"></div>';
 
-    $s .= '<div id="ljpost-url-wrapper">';
-    $s .= '<label id="ljpost-url-label" for="ljpost-url">' . t('LiveJournal URL') . '</label>';
-    $s .= '<input id="ljpost-url" type="url" name="lj_url" value="' . $lj_url . '" />';
-    $s .= '</div><div class="clear"></div>';
-
     $s .= '<div id="ljpost-bydefault-wrapper">';
     $s .= '<label id="ljpost-bydefault-label" for="ljpost-bydefault">' . t('Post to LiveJournal by default') . '</label>';
     $s .= '<input id="ljpost-bydefault" type="checkbox" name="lj_bydefault" value="1" ' . $def_checked . '/>';
@@ -108,7 +102,6 @@ function ljpost_settings_post(&$a,&$b) {
                set_pconfig(local_user(),'ljpost','post_by_default',intval($_POST['lj_bydefault']));
                set_pconfig(local_user(),'ljpost','lj_username',trim($_POST['lj_username']));
                set_pconfig(local_user(),'ljpost','lj_password',trim($_POST['lj_password']));
-               set_pconfig(local_user(),'ljpost','lj_url',trim($_POST['lj_url']));
 
        }
 
@@ -170,7 +163,7 @@ function ljpost_send(&$a,&$b) {
 
        $lj_username = get_pconfig($b['uid'],'ljpost','lj_username');
        $lj_password = get_pconfig($b['uid'],'ljpost','lj_password');
-       $lj_blog = '$lj_url/interface/xmlrpc';
+       $lj_blog = 'http://www.livejournal.com/interface/xmlrpc';
 
        if($lj_username && $lj_password && $lj_blog) {