mirror of
https://github.com/vrana/adminer.git
synced 2025-08-18 04:11:27 +02:00
Link table names in SQL queries
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1510 7c3ca157-0c34-0410-bff1-cbf682f78f5c
This commit is contained in:
@@ -483,7 +483,7 @@ document.getElementById('username').focus();
|
||||
* @return null
|
||||
*/
|
||||
function navigation($missing) {
|
||||
global $VERSION, $connection, $token;
|
||||
global $VERSION, $connection, $token, $driver;
|
||||
?>
|
||||
<h1>
|
||||
<a href="http://www.adminer.org/" id="h1"><?php echo $this->name(); ?></a>
|
||||
@@ -519,6 +519,17 @@ document.getElementById('username').focus();
|
||||
echo "<p class='message'>" . lang('No tables.') . "\n";
|
||||
} else {
|
||||
$this->tablesPrint($tables);
|
||||
$links = array();
|
||||
foreach ($tables as $table => $type) {
|
||||
$links[] = preg_quote($table, '/');
|
||||
}
|
||||
echo "<script type='text/javascript'>\n";
|
||||
echo "var jushLinks = { $driver: [ '" . addcslashes(h(ME), "\\'/") . "table=\$&', /\\b(" . implode("|", $links) . ")\\b/g ] };\n";
|
||||
echo "jushLinks.bac = jushLinks.$driver;\n";
|
||||
echo "jushLinks.bra = jushLinks.$driver;\n";
|
||||
echo "jushLinks.mssql_bra = jushLinks.$driver;\n";
|
||||
echo "jushLinks.sqlite_quo = jushLinks.$driver;\n";
|
||||
echo "</script>\n";
|
||||
}
|
||||
echo '<p><a href="' . h(ME) . 'create=">' . bold(lang('Create new table'), $_GET["create"] === "") . "</a>\n";
|
||||
}
|
||||
|
Reference in New Issue
Block a user