1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-12 01:24:17 +02:00

Use rel="noreferrer" for documentation links

This commit is contained in:
Jakub Vrana
2011-01-31 20:35:48 +01:00
parent 79fa7dab3b
commit f195903964
3 changed files with 3 additions and 3 deletions

View File

@@ -43,7 +43,7 @@ function select($result, $connection2 = null, $href = "") {
}
$types[$j] = $field->type;
$name = h($field->name);
echo "<th" . ($orgtable != "" || $field->name != $orgname ? " title='" . h(($orgtable != "" ? "$orgtable." : "") . $orgname) . "'" : "") . ">" . ($href ? "<a href='$href" . strtolower($name) . "' target='_blank'>$name</a>" : $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 "</thead>\n";
}