File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -378,6 +378,7 @@ posts.locationtxt = You can ask local questions in your native language.
378378posts.unanswered = Unanswered
379379posts.unapproved = Unapproved
380380posts.unaccepted = Questions with no accepted answer
381+ posts.accepted = Questions with an accepted answer
381382posts.unapprovedq = Unapproved questions
382383posts.sticky = Pinned questions
383384posts.lastedited = Last edited
Original file line number Diff line number Diff line change 211211 #if($questionsTypeFilter == $prop)selected#end
212212 #end
213213 #set($unacceptedQuery = $utils.urlEncode("properties.answercount:[1 TO *] NOT properties.answerid:[* TO *]") )
214+ #set($acceptedQuery = $utils.urlEncode("properties.answercount:[1 TO *] AND properties.answerid:[* TO *]") )
214215 <select name="typeFilter">
215216 <option value="" #filterselected("")>$!lang.get('showall')</option>
216217 <option value="type:question" #filterselected("type:question")>$!lang.get('questions.title')</option>
217218 <option value="type:sticky" #filterselected("type:sticky")>$!lang.get('posts.sticky')</option>
218219 <option value="type:unapprovedquestion" #filterselected("type:unapprovedquestion")>$!lang.get('posts.unapprovedq')</option>
219220 <option value="$unacceptedQuery" #filterselected($unacceptedQuery)>$!lang.get('posts.unaccepted')</option>
221+ <option value="$acceptedQuery" #filterselected($acceptedQuery)>$!lang.get('posts.accepted')</option>
220222 </select>
221223 </div>
222224 </div>
You can’t perform that action at this time.
0 commit comments