added tooltip for filter boxes

This commit is contained in:
Roland Gruber 2004-10-22 11:48:49 +00:00
parent 4638db3d33
commit 7254cd87c8
1 changed files with 3 additions and 1 deletions

View File

@ -158,7 +158,9 @@ function listPrintTableHeader($scope, $searchFilter, $desc_array, $attr_array, $
for ($k = 0; $k < sizeof ($desc_array); $k++) {
echo "<td>";
echo ("<input type=\"text\" size=15 name=\"filter" . strtolower ($attr_array[$k]) .
"\" value=\"" . $_POST["filter" . strtolower($attr_array[$k])] . "\">");
"\" value=\"" . $_POST["filter" . strtolower($attr_array[$k])] . "\"" .
"title=\"" . _("Here you can input small filters (e.g. 'value' or 'v*').") . "\"" .
">");
echo "</td>\n";
}
echo "</tr>\n";