Fixed bug # 3460090 - TextareaAutoSelect feature broken

This commit is contained in:
Rouslan Placella
2011-12-15 23:03:03 +00:00
parent 0fe5bee344
commit 5130615c0a
2 changed files with 2 additions and 1 deletions

View File

@@ -200,7 +200,7 @@ function PMA_sqlQueryFormInsert($query = '', $is_querywindow = false, $delimiter
// enable auto select text in textarea
if ($GLOBALS['cfg']['TextareaAutoSelect']) {
$auto_sel = ' onfocus="selectContent(this, sql_box_locked, true)"';
$auto_sel = ' onclick="selectContent(this, sql_box_locked, true)"';
} else {
$auto_sel = '';
}