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

(-)trinity-tdeio-apt-14.0.0~pre105+c7bc8b76/src/apt.cpp.ORI (-4 / +4 lines)
Lines 143-152 Link Here
143
 */
143
 */
144
144
145
static const TQString
145
static const TQString
146
  html_form_begin("\n<form action=\"apt:/\" method=\"GET\">\n"
146
  html_form_begin_apt("\n<form action=\"apt:/\" method=\"GET\">\n"
147
                  "<table class=\"query\">\n");
147
                  "<table class=\"query\">\n");
148
static const TQString
148
static const TQString
149
  html_form_end("<tr>\n"
149
  html_form_end_apt("<tr>\n"
150
                "\t<td class=\"button\" colspan=\"2\"><input type=\"submit\" value=\"%1\"></td>\n"
150
                "\t<td class=\"button\" colspan=\"2\"><input type=\"submit\" value=\"%1\"></td>\n"
151
                "</tr>\n"
151
                "</tr>\n"
152
                "</table>\n"
152
                "</table>\n"
Lines 197-203 Link Here
197
  if (online)
197
  if (online)
198
    stream << "<table class=\"queryform\"><tr><td>\n";
198
    stream << "<table class=\"queryform\"><tr><td>\n";
199
199
200
  stream << html_form_begin;
200
  stream << html_form_begin_apt;
201
  stream << "<tr><td colspan=\"2\" class=\"title\">" + i18n("Offline search") + "</td></tr>" << endl;
201
  stream << "<tr><td colspan=\"2\" class=\"title\">" + i18n("Offline search") + "</td></tr>" << endl;
202
  stream << make_html_form_line("search", i18n("Package search"));
202
  stream << make_html_form_line("search", i18n("Package search"));
203
  if (ext_form)
203
  if (ext_form)
Lines 206-212 Link Here
206
      stream << make_html_form_line("fsearch", i18n("File search"));
206
      stream << make_html_form_line("fsearch", i18n("File search"));
207
    stream << make_html_form_line("show", i18n("Package info"));
207
    stream << make_html_form_line("show", i18n("Package info"));
208
  }
208
  }
209
  stream << html_form_end.arg( i18n("Search") );
209
  stream << html_form_end_apt.arg( i18n("Search") );
210
210
211
  if (online)
211
  if (online)
212
  {
212
  {

Return to bug 1560