fix 350864 enable checking for new news messages at startup, sr=mscott

This commit is contained in:
bienvenu%nventure.com 2006-08-31 20:50:22 +00:00
Родитель 26f9d9dce4
Коммит c198b58e7f
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -148,7 +148,7 @@
<caption label="&serverSettings.label;"/>
<vbox align="start">
<checkbox wsm_persist="true"
id="server.loginAtStartUp" hidefor="nntp"
id="server.loginAtStartUp"
label="&loginAtStartup.label;"
accesskey="&loginAtStartup.accesskey;"
prefattribute="value"

Просмотреть файл

@ -1507,7 +1507,7 @@ NS_IMETHODIMP
nsNntpService::GetCanLoginAtStartUp(PRBool *aCanLoginAtStartUp)
{
NS_ENSURE_ARG_POINTER(aCanLoginAtStartUp);
*aCanLoginAtStartUp = PR_FALSE;
*aCanLoginAtStartUp = PR_TRUE;
return NS_OK;
}