mirror of
https://github.com/vrana/adminer.git
synced 2025-08-12 17:44:07 +02:00
Link to bookmark SQL command
This commit is contained in:
@@ -92,7 +92,7 @@ if (!$error && $_POST) {
|
|||||||
do {
|
do {
|
||||||
$result = $connection->store_result();
|
$result = $connection->store_result();
|
||||||
$end = explode(" ", microtime());
|
$end = explode(" ", microtime());
|
||||||
$time = " <span class='time'>(" . lang('%.3f s', max(0, $end[0] - $start[0] + $end[1] - $start[1])) . ")</span>";
|
$time = " <span class='time'>(" . lang('%.3f s', max(0, $end[0] - $start[0] + $end[1] - $start[1])) . ")</span>" . (strlen($q) < 1000 ? " <a href='" . h(ME) . "sql=" . urlencode(trim($q)) . "'>" . lang('Edit') . "</a>" : ""); // 1000 - maximum length of encoded URL in IE is 2083 characters
|
||||||
if (!is_object($result)) {
|
if (!is_object($result)) {
|
||||||
if (preg_match("~^$space*(CREATE|DROP|ALTER)$space+(DATABASE|SCHEMA)\\b~isU", $q)) {
|
if (preg_match("~^$space*(CREATE|DROP|ALTER)$space+(DATABASE|SCHEMA)\\b~isU", $q)) {
|
||||||
restart_session();
|
restart_session();
|
||||||
|
@@ -3,6 +3,7 @@ Option to show only errors in SQL command
|
|||||||
Highlight and edit SQL command in processlist
|
Highlight and edit SQL command in processlist
|
||||||
Disable XSS "protection" of IE8
|
Disable XSS "protection" of IE8
|
||||||
Timestamp in export
|
Timestamp in export
|
||||||
|
Link to bookmark SQL command
|
||||||
Immunity against zend.ze1_compatibility_mode
|
Immunity against zend.ze1_compatibility_mode
|
||||||
Fix last page with empty result set
|
Fix last page with empty result set
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user