]> git.mxchange.org Git - friendica-addons.git/commitdiff
default checked
authorfriendica <info@friendica.com>
Tue, 15 May 2012 11:31:38 +0000 (04:31 -0700)
committerfriendica <info@friendica.com>
Tue, 15 May 2012 11:31:38 +0000 (04:31 -0700)
wppost.tgz
wppost/wppost.php

index bf238ba96a18cc45fc8c61603ef6e604cf6285ec..dce99d58df5097f1ca829e42caf5b3123260a889 100755 (executable)
Binary files a/wppost.tgz and b/wppost.tgz differ
index ed39bb385894c5e789fdab9e76de5a424874e2c0..216c6417c171fed939616d7c4e3281c100584b6e 100755 (executable)
@@ -60,8 +60,10 @@ function wppost_settings(&$a,&$s) {
     $checked = (($enabled) ? ' checked="checked" ' : '');
 
     $def_enabled = get_pconfig(local_user(),'wppost','post_by_default');
+    $back_enabled = get_pconfig(local_user(),'wppost','backlink');
 
     $def_checked = (($def_enabled) ? ' checked="checked" ' : '');
+    $back_checked = (($back_enabled) ? ' checked="checked" ' : '');
 
        $wp_username = get_pconfig(local_user(), 'wppost', 'wp_username');
        $wp_password = get_pconfig(local_user(), 'wppost', 'wp_password');
@@ -98,7 +100,7 @@ function wppost_settings(&$a,&$s) {
 
     $s .= '<div id="wppost-backlink-wrapper">';
     $s .= '<label id="wppost-backlink-label" for="wppost-backlink">' . t('Provide a backlink to the Friendica post') . '</label>';
-    $s .= '<input id="wppost-backlink" type="checkbox" name="wp_backlink" value="1" ' . $def_checked . '/>';
+    $s .= '<input id="wppost-backlink" type="checkbox" name="wp_backlink" value="1" ' . $back_checked . '/>';
 
     $s .= '</div><div class="clear"></div>';