By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 860
Collapse All | Expand All

(-)tdelibs/tdecore/network/kresolver.cpp (-1 / +1 lines)
Lines 940-946 Link Here
940
940
941
static TQStringList *KResolver_initIdnDomains()
941
static TQStringList *KResolver_initIdnDomains()
942
{
942
{
943
  const char *kde_use_idn = getenv("KDE_USE_IDN");
943
  const char *kde_use_idn = getenv("TDE_USE_IDN");
944
  if (!kde_use_idn)
944
  if (!kde_use_idn)
945
     kde_use_idn = "ac:at:br:cat:ch:cl:cn:de:dk:fi:gr:hu:info:io:is:jp:kr:li:lt:museum:org:no:se:sh:th:tm:tw:vn";
945
     kde_use_idn = "ac:at:br:cat:ch:cl:cn:de:dk:fi:gr:hu:info:io:is:jp:kr:li:lt:museum:org:no:se:sh:th:tm:tw:vn";
946
  return new TQStringList(TQStringList::split(':', TQString::fromLatin1(kde_use_idn).lower()));
946
  return new TQStringList(TQStringList::split(':', TQString::fromLatin1(kde_use_idn).lower()));

Return to bug 860