mirror of
https://github.com/vrana/adminer.git
synced 2025-08-11 00:54:08 +02:00
Display help cursor over documentation links
This commit is contained in:
@@ -49,7 +49,9 @@ function select($result, $connection2 = null, $href = "", $orgtables = array())
|
||||
}
|
||||
$types[$j] = $field->type;
|
||||
$name = h($name);
|
||||
echo "<th" . ($orgtable != "" || $field->name != $orgname ? " title='" . h(($orgtable != "" ? "$orgtable." : "") . $orgname) . "'" : "") . ">" . ($href ? "<a href='$href" . strtolower($name) . "' target='_blank' rel='noreferrer'>$name</a>" : $name);
|
||||
echo "<th" . ($orgtable != "" || $field->name != $orgname ? " title='" . h(($orgtable != "" ? "$orgtable." : "") . $orgname) . "'" : "") . ">"
|
||||
. ($href ? "<a href='$href" . strtolower($name) . "' target='_blank' rel='noreferrer' class='help'>$name</a>" : $name)
|
||||
;
|
||||
}
|
||||
echo "</thead>\n";
|
||||
}
|
||||
|
Reference in New Issue
Block a user