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

(-)tdelibs/kdoctools/tdeio_help.cpp (-7 / +21 lines)
Lines 102-121 Link Here
102
    {
102
    {
103
        result = langLookup(path+"/index.html");
103
        result = langLookup(path+"/index.html");
104
        if (!result.isEmpty())
104
        if (!result.isEmpty())
105
	{
105
        {
106
            KURL red( "help:/" );
106
            KURL red( "help:/" );
107
            red.setPath( path + "/index.html" );
107
            red.setPath( path + "/index.html" );
108
            red.setQuery( query );
108
            red.setQuery( query );
109
            redirection(red);
109
            redirection(red);
110
            kdDebug( 7119 ) << "redirect to " << red.url() << endl;
110
            kdDebug( 7119 ) << "redirect to " << red.url() << endl;
111
            redirect = true;
111
            redirect = true;
112
	}
112
        }
113
        else
113
        else
114
	{
114
        {
115
	    unicodeError( i18n("There is no documentation available for %1." ).arg(path) );
115
            const TQString helpNotFound = "khelpcenter/helpnotfound/index.html";
116
	    finished();
116
            if (!langLookup(helpNotFound).isEmpty())
117
            return TQString::null;
117
            {
118
	}
118
                KURL red;
119
                red.setProtocol("help");
120
                red.setPath(helpNotFound);
121
                red.setQuery(query);
122
                redirection(red);
123
                kdDebug( 7119 ) << "redirect to " << red.url() << endl;
124
                redirect = true;
125
            }
126
            else
127
            {
128
                unicodeError( i18n("There is no documentation available for %1." ).arg(path) );
129
                finished();
130
                return TQString::null;
131
            }
132
        }
119
    } else
133
    } else
120
        kdDebug( 7119 ) << "result " << result << endl;
134
        kdDebug( 7119 ) << "result " << result << endl;
121
135

Return to bug 1839