bug #1805102, TextareaAutoSelect issues

This commit is contained in:
Marc Delisle
2007-10-20 17:54:15 +00:00
parent 2806da7b7f
commit 74363e764d
3 changed files with 5 additions and 1 deletions

View File

@@ -26,6 +26,9 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- it should not be possible to move or copy a table to information_schema - it should not be possible to move or copy a table to information_schema
- bug #1814733 win: copy db to mixed name db fails - bug #1814733 win: copy db to mixed name db fails
- bug #1777249 [display] Remove horizontal lines in navigation panel - bug #1777249 [display] Remove horizontal lines in navigation panel
- bug #1805102 [display] TextareaAutoSelect issues: set this parameter
default value to false to help cut&paste from a terminal window; also
set focus to the textarea
2.11.1.2 (2007-10-17) 2.11.1.2 (2007-10-17)
- fixed XSS in server_status.php, thanks to Omer Singer, The DigiTrust Group - fixed XSS in server_status.php, thanks to Omer Singer, The DigiTrust Group

View File

@@ -1713,7 +1713,7 @@ $cfg['LongtextDoubleTextarea'] = true;
* *
* @global boolean $cfg['TextareaAutoSelect'] * @global boolean $cfg['TextareaAutoSelect']
*/ */
$cfg['TextareaAutoSelect'] = true; $cfg['TextareaAutoSelect'] = false;
/** /**
* textarea size (columns) for CHAR/VARCHAR * textarea size (columns) for CHAR/VARCHAR

View File

@@ -222,6 +222,7 @@ if (PMA_isValid($_REQUEST['init'])) {
echo 'PMA_querywindowResize();' . "\n"; echo 'PMA_querywindowResize();' . "\n";
} }
?> ?>
document.getElementById('sqlquery').focus();
} }
//]]> //]]>