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 853
Collapse All | Expand All

(-)tdebase/konsole/konsole/konsole.cpp (-1 / +4 lines)
Lines 3369-3375 Link Here
3369
  // try to locate the binary
3369
  // try to locate the binary
3370
  TQString exec= co->readPathEntry("Exec");
3370
  TQString exec= co->readPathEntry("Exec");
3371
  if (exec.startsWith("sudo su -c \'")) {
3371
  if (exec.startsWith("su -c \'")) {
3372
     exec = exec.mid(7,exec.length()-8);
3373
  }
3374
  else if (exec.startsWith("sudo su -c \'")) {
3372
     exec = exec.mid(12,exec.length()-13);
3375
     exec = exec.mid(12,exec.length()-13);
3373
  }
3376
  }

Return to bug 853