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

(-)tdebase/doc/userguide/kde-for-admins.docbook (-1 / +1 lines)
Lines 1212-1218 Link Here
1212
</listitem>
1212
</listitem>
1213
</varlistentry>
1213
</varlistentry>
1214
1214
1215
<varlistentry><term>$<envar>KDE_HOME_READONLY</envar></term>
1215
<varlistentry><term>$<envar>TDE_HOME_READONLY</envar></term>
1216
<listitem><para>Set this variable to indicate that your home directory is
1216
<listitem><para>Set this variable to indicate that your home directory is
1217
mounted as read-only.</para>
1217
mounted as read-only.</para>
1218
</listitem>
1218
</listitem>
(-)tdebase/ksmserver/main.cpp (-1 / +1 lines)
Lines 70-76 Link Here
70
{
70
{
71
  TQCString msg;
71
  TQCString msg;
72
  TQCString path = getenv("HOME");
72
  TQCString path = getenv("HOME");
73
  TQCString readOnly = getenv("KDE_HOME_READONLY");
73
  TQCString readOnly = getenv("TDE_HOME_READONLY");
74
  if (path.isEmpty())
74
  if (path.isEmpty())
75
  {
75
  {
76
     msg = "$HOME not set!";
76
     msg = "$HOME not set!";
(-)tdelibs/kinit/kinit.cpp (-1 / +1 lines)
Lines 838-844 Link Here
838
838
839
  {
839
  {
840
     TQCString path = home_dir;
840
     TQCString path = home_dir;
841
     TQCString readOnly = getenv("KDE_HOME_READONLY");
841
     TQCString readOnly = getenv("TDE_HOME_READONLY");
842
     if (access(path.data(), R_OK|W_OK))
842
     if (access(path.data(), R_OK|W_OK))
843
     {
843
     {
844
       if (errno == ENOENT)
844
       if (errno == ENOENT)
(-)tdelibs/tdecore/kapplication.cpp (-1 / +1 lines)
Lines 919-925 Link Here
919
  // * We use kdialog to warn the user, so we better not generate warnings from
919
  // * We use kdialog to warn the user, so we better not generate warnings from
920
  //   kdialog itself.
920
  //   kdialog itself.
921
  // * Don't warn if we run with a read-only $HOME
921
  // * Don't warn if we run with a read-only $HOME
922
  TQCString readOnly = getenv("KDE_HOME_READONLY");
922
  TQCString readOnly = getenv("TDE_HOME_READONLY");
923
  if (readOnly.isEmpty() && (tqstrcmp(name(), "kdialog") != 0))
923
  if (readOnly.isEmpty() && (tqstrcmp(name(), "kdialog") != 0))
924
  {
924
  {
925
    KConfigGroupSaver saver(config, "KDE Action Restrictions");
925
    KConfigGroupSaver saver(config, "KDE Action Restrictions");

Return to bug 860