Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMadhura Jayaratne <madhura.cj@gmail.com>2015-05-25 12:21:31 +0300
committerMadhura Jayaratne <madhura.cj@gmail.com>2015-05-25 12:21:31 +0300
commit6041162040ac7aed251d35a1c054381c0cf77634 (patch)
tree63538c180c969790f255a3a583b433c3b86788e2 /view_create.php
parentcdbcb85d52e7e10b1c35ecf9223c9674e4fa640c (diff)
Do not use configurations TextareaCols and TextareaRows of their intended places.
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
Diffstat (limited to 'view_create.php')
-rw-r--r--view_create.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/view_create.php b/view_create.php
index 100984b089..b721ac274a 100644
--- a/view_create.php
+++ b/view_create.php
@@ -247,8 +247,7 @@ $htmlString .= '<tr><td class="nowrap">' . __('Column names') . '</td>'
$htmlString .= '<tr><td class="nowrap">AS</td>'
. '<td>'
- . '<textarea name="view[as]" rows="' . $cfg['TextareaRows'] . '"'
- . ' cols="' . $cfg['TextareaCols'] . '" dir="' . $text_dir . '"';
+ . '<textarea name="view[as]" rows="15" cols="40" dir="' . $text_dir . '"';
if ($GLOBALS['cfg']['TextareaAutoSelect'] || true) {
$htmlString .= ' onclick="selectContent(this, sql_box_locked, true)"';
}