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

(-)applications/kiosktool/kiosktool/kioskrun.cpp (-1 / +1 lines)
Lines 170-176 Link Here
170
   p->setEnvironment("XDG_CONFIG_HOME", m_homeDir+"/.config");
170
   p->setEnvironment("XDG_CONFIG_HOME", m_homeDir+"/.config");
171
   p->setEnvironment("XDG_CONFIG_DIRS", m_xdgConfigDirs.join(":"));
171
   p->setEnvironment("XDG_CONFIG_DIRS", m_xdgConfigDirs.join(":"));
172
   p->setEnvironment("DCOPAUTHORITY", m_homeDir+"/.kde/DCOPserver");
172
   p->setEnvironment("DCOPAUTHORITY", m_homeDir+"/.kde/DCOPserver");
173
   p->setEnvironment("KDE_KIOSK_NO_PROFILES", "true");
173
   p->setEnvironment("TDE_KIOSK_NO_PROFILES", "true");
174
   if (m_noRestrictions)
174
   if (m_noRestrictions)
175
      p->setEnvironment("KDE_KIOSK_NO_RESTRICTIONS", "true");
175
      p->setEnvironment("KDE_KIOSK_NO_RESTRICTIONS", "true");
176
}
176
}
(-)tdelibs/tdecore/kstandarddirs.cpp (-1 / +1 lines)
Lines 1568-1574 Link Here
1568
1568
1569
        bool readProfiles = true;
1569
        bool readProfiles = true;
1570
1570
1571
        if (kde_kiosk_admin && !TQCString(getenv("KDE_KIOSK_NO_PROFILES")).isEmpty())
1571
        if (kde_kiosk_admin && !TQCString(getenv("TDE_KIOSK_NO_PROFILES")).isEmpty())
1572
            readProfiles = false;
1572
            readProfiles = false;
1573
1573
1574
        TQString userMapFile = config->readEntry("userProfileMapFile");
1574
        TQString userMapFile = config->readEntry("userProfileMapFile");

Return to bug 860