html issues

This commit is contained in:
friendica 2012-06-13 21:41:49 -07:00
parent 46fcc40e92
commit 24da42a22a
6 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@ -32,7 +32,7 @@ function libertree_jot_nets(&$a,&$b) {
if(intval($ltree_post) == 1) {
$ltree_defpost = get_pconfig(local_user(),'libertree','post_by_default');
$selected = ((intval($ltree_defpost) == 1) ? ' checked="checked" ' : '');
$b .= '<div class="profile-jot-net"><input type="checkbox" name="libertree_enable"' . $selected . 'value="1" /> '
$b .= '<div class="profile-jot-net"><input type="checkbox" name="libertree_enable"' . $selected . ' value="1" /> '
. t('Post to libertree') . '</div>';
}
}

Binary file not shown.

View File

@ -33,7 +33,7 @@ function posterous_jot_nets(&$a,&$b) {
if(intval($pstr_post) == 1) {
$pstr_defpost = get_pconfig(local_user(),'posterous','post_by_default');
$selected = ((intval($pstr_defpost) == 1) ? ' checked="checked" ' : '');
$b .= '<div class="profile-jot-net"><input type="checkbox" name="posterous_enable"' . $selected . 'value="1" /> '
$b .= '<div class="profile-jot-net"><input type="checkbox" name="posterous_enable"' . $selected . ' value="1" /> '
. t('Post to Posterous') . '</div>';
}
}

Binary file not shown.

View File

@ -32,7 +32,7 @@ function tumblr_jot_nets(&$a,&$b) {
if(intval($tmbl_post) == 1) {
$tmbl_defpost = get_pconfig(local_user(),'tumblr','post_by_default');
$selected = ((intval($tmbl_defpost) == 1) ? ' checked="checked" ' : '');
$b .= '<div class="profile-jot-net"><input type="checkbox" name="tumblr_enable"' . $selected . 'value="1" /> '
$b .= '<div class="profile-jot-net"><input type="checkbox" name="tumblr_enable"' . $selected . ' value="1" /> '
. t('Post to Tumblr') . '</div>';
}
}