diff options
author | Friendika <info@friendika.com> | 2011-02-11 04:32:38 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-11 04:32:38 -0800 |
commit | 5e02519a1311cb62d7aaa2f8dc947fd0affd454c (patch) | |
tree | 71e44f2f542dfcfaba3247c792eec2191aadda92 /addon/twitter/twitter.php | |
parent | 0bfe63e7d887f484c5cc0aea37ead0c283967fee (diff) | |
download | volse-hubzilla-5e02519a1311cb62d7aaa2f8dc947fd0affd454c.tar.gz volse-hubzilla-5e02519a1311cb62d7aaa2f8dc947fd0affd454c.tar.bz2 volse-hubzilla-5e02519a1311cb62d7aaa2f8dc947fd0affd454c.zip |
disable network toggles when ACL's are entered
Diffstat (limited to 'addon/twitter/twitter.php')
-rw-r--r-- | addon/twitter/twitter.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addon/twitter/twitter.php b/addon/twitter/twitter.php index 6a0365e09..0b706f9b1 100644 --- a/addon/twitter/twitter.php +++ b/addon/twitter/twitter.php @@ -63,7 +63,7 @@ function twitter_jot_nets(&$a,&$b) { if(intval($tw_post) == 1) { $tw_defpost = get_pconfig(local_user(),'twitter','post_by_default'); $selected = ((intval($tw_defpost == 1)) ? ' selected="selected" ' : ''); - $b .= '<div class="profile-jot-net"><input type="checkbox" name="twitter_enable" $selected value="1" /> ' + $b .= '<div class="profile-jot-net"><input type="checkbox" name="twitter_enable"' . $selected . 'value="1" /> ' . t('Post to Twitter') . '</div>'; } |