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:
authorKasun Chathuranga <chathuranga.jayaneththi@gmail.com>2013-07-12 07:54:55 +0400
committerKasun Chathuranga <chathuranga.jayaneththi@gmail.com>2013-07-12 07:54:55 +0400
commit05b5f0a28444eb6d4029ea233b39f531e56d02a8 (patch)
tree72f6f62ba36ed8f696b3813d30e6e26877672b9d /view_create.php
parentf498b59af7b21acee7946f575ce20f92dbeb906c (diff)
It is illogical using 'TextareaCols' configuration here. Default values give a very small text area to edit the view
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 f6314fb4e7..1857240a02 100644
--- a/view_create.php
+++ b/view_create.php
@@ -230,8 +230,7 @@ $htmlString .= '<tr><td>' . __('Column names') . '</td>'
$htmlString .= '<tr><td>AS</td>'
. '<td>'
. '<textarea name="view[as]" rows="' . $cfg['TextareaRows'] . '"'
- . ' cols="' . $cfg['TextareaCols'] . '"'
- . ' dir="' . $text_dir . '"';
+ . ' cols="80" dir="' . $text_dir . '"';
if ($GLOBALS['cfg']['TextareaAutoSelect'] || true) {
$htmlString .= ' onclick="selectContent(this, sql_box_locked, true)"';
}