File tree Expand file tree Collapse file tree 3 files changed +7
-10
lines changed
administrator/components/com_patchtester Expand file tree Collapse file tree 3 files changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ protected function getListQuery()
247247 if (!empty ($ branch ))
248248 {
249249 $ query ->where (
250- $ db ->quoteName ('pulls.branch ' ) . ' = ' . $ db ->quote ($ branch )
250+ $ db ->quoteName ('pulls.branch ' ) . ' IN ( ' . implode ( ' , ' , $ db ->quote ($ branch )) . ' ) '
251251 );
252252 }
253253
Original file line number Diff line number Diff line change 99namespace PatchTester \View \Pulls ;
1010
1111use Exception ;
12- use Joomla \CMS \Factory ;
1312use Joomla \CMS \Form \Form ;
1413use Joomla \CMS \Language \Text ;
1514use Joomla \CMS \Pagination \Pagination ;
@@ -127,11 +126,6 @@ public function render(): string
127126
128127 Text::script ('COM_PATCHTESTER_CONFIRM_RESET ' );
129128
130- if (version_compare (JVERSION , '4.0 ' , 'ge ' ))
131- {
132- Factory::getApplication ()->enqueueMessage (Text::_ ('COM_PATCHTESTER_40_WARNING ' ), 'warning ' );
133- }
134-
135129 return parent ::render ();
136130 }
137131
Original file line number Diff line number Diff line change 1414 type=" list"
1515 default=" "
1616 validate=" options"
17+ onchange=" this.form.submit();"
1718 >
1819 <option value =" " >COM_PATCHTESTER_FILTER_APPLIED_PATCHES</option >
19- <option value =" 0" >JNO</option >
2020 <option value =" 1" >JYES</option >
21+ <option value =" 0" >JNO</option >
2122 </field >
2223
2324
2627 type=" list"
2728 default=" "
2829 validate=" options"
30+ onchange=" this.form.submit();"
2931 >
3032 <option value =" " >COM_PATCHTESTER_FILTER_RTC_PATCHES</option >
31- <option value =" 0" >JNO</option >
3233 <option value =" 1" >JYES</option >
34+ <option value =" 0" >JNO</option >
3335 </field >
3436
3537 <field
3638 name=" npm"
3739 type=" list"
3840 default=" "
3941 validate=" options"
42+ onchange=" this.form.submit();"
4043 >
4144 <option value =" " >COM_PATCHTESTER_FILTER_NPM_PATCHES</option >
42- <option value =" 0" >JNO</option >
4345 <option value =" 1" >JYES</option >
46+ <option value =" 0" >JNO</option >
4447 </field >
4548
4649 <field
You can’t perform that action at this time.
0 commit comments