Strip quotes in TwitName

This commit is contained in:
Ianos Gnatiuc 2006-03-03 19:09:41 +00:00
parent 90950f8cb8
commit 6455734f3d
2 changed files with 4 additions and 1 deletions

View File

@ -10,6 +10,8 @@ ______________________________________________________________________
Notes for GoldED+ 1.1.5, /snapshot/
______________________________________________________________________
- Strip quotes in TwitName.
+ LISTtogglebookmark key works in thread list.
+ New config file token: Translate "text" "translation". Used together

View File

@ -292,7 +292,8 @@ void CfgTwitname() {
strbtrim(val);
}
}
strxcpy(tn.name, val, sizeof(tn.name));
strxcpy(tn.name, StripQuotes(val), sizeof(tn.name));
if(cfgingroup)
CFG->grp.AddItm(GRP_TWITNAME, &tn, sizeof(tn));