mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-19 01:43:41 +00:00
fix bug \#290
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
This commit is contained in:
parent
63c3b8aad5
commit
e027c94868
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ function wppost_jot_nets(&$a,&$b) {
|
||||||
if(intval($wp_post) == 1) {
|
if(intval($wp_post) == 1) {
|
||||||
$wp_defpost = get_pconfig(local_user(),'wppost','post_by_default');
|
$wp_defpost = get_pconfig(local_user(),'wppost','post_by_default');
|
||||||
$selected = ((intval($wp_defpost) == 1) ? ' checked="checked" ' : '');
|
$selected = ((intval($wp_defpost) == 1) ? ' checked="checked" ' : '');
|
||||||
$b .= '<div class="profile-jot-net"><input type="checkbox" name="wppost_enable"' . $selected . 'value="1" /> '
|
$b .= '<div class="profile-jot-net"><input type="checkbox" name="wppost_enable" ' . $selected . ' value="1" /> '
|
||||||
. t('Post to Wordpress') . '</div>';
|
. t('Post to Wordpress') . '</div>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue