1
0
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:
Jakub Vrana
2013-04-04 18:45:54 -07:00
parent 2c626c7fc7
commit fee31e73c1
3 changed files with 5 additions and 2 deletions

View File

@@ -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";
}