html issues
This commit is contained in:
parent
46fcc40e92
commit
24da42a22a
6 changed files with 3 additions and 3 deletions
BIN
libertree.tgz
BIN
libertree.tgz
Binary file not shown.
|
@ -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>';
|
||||
}
|
||||
}
|
||||
|
|
BIN
posterous.tgz
BIN
posterous.tgz
Binary file not shown.
|
@ -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>';
|
||||
}
|
||||
}
|
||||
|
|
BIN
tumblr.tgz
BIN
tumblr.tgz
Binary file not shown.
|
@ -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>';
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue