[dw-free] Crosspost enabled by default + no password saved, silently prevents posting to communities
[commit: http://hg.dwscoalition.org/dw-free/rev/574d2016a620]
http://bugs.dwscoalition.org/show_bug.cgi?id=2437
Skip xpost checks if we're posting to a community or account that doesn't
support xposting.
Patch by
afuna.
Files modified:
http://bugs.dwscoalition.org/show_bug.cgi?id=2437
Skip xpost checks if we're posting to a community or account that doesn't
support xposting.
Patch by
![[personal profile]](https://www.dreamwidth.org/img/silk/identity/user.png)
Files modified:
- htdocs/js/xpost.js
-------------------------------------------------------------------------------- diff -r 5db312ece4e6 -r 574d2016a620 htdocs/js/xpost.js --- a/htdocs/js/xpost.js Wed Mar 17 05:02:42 2010 +0000 +++ b/htdocs/js/xpost.js Wed Mar 17 05:05:20 2010 +0000 @@ -155,8 +155,10 @@ XPostAccount.updateXpostFromJournal = fu var xpostdiv = $('xpostdiv'); if (allowXpost) { + XPostAccount.skipChecks = false; xpostdiv.style.display = 'block'; } else { + XPostAccount.skipChecks = true; xpostdiv.style.display = 'none'; } } --------------------------------------------------------------------------------