GET-Parameter auch für Text übernehmen

This commit is contained in:
kindlm
2024-03-28 13:54:45 +01:00
parent 21b05394c8
commit 2f99457283
2 changed files with 662 additions and 656 deletions
+6 -1
View File
@@ -268,7 +268,12 @@ class filter extends basis_db
$html .= '</script>';
break;
case 'text':
$html .= '<input type="text" id="'.$filter->kurzbz.'" class="form-control" name="'.$filter->kurzbz.'" '.$filter->htmlattr.'>';
$html .= '<input type="text" id="'.$filter->kurzbz.'" class="form-control" name="'.$filter->kurzbz.'" '.$filter->htmlattr;
if (isset($getParams[$filter->kurzbz]))
{
$html .= ' value="'.$getParams[$filter->kurzbz].'"';
}
$html .= '>';
break;
}
return $html;
File diff suppressed because it is too large Load Diff