ImportSourceSql: query should be a textarea

This commit is contained in:
Thomas Gelf 2015-07-22 11:36:43 +02:00
parent 2076d6b9a7
commit af021b06ac
2 changed files with 4 additions and 1 deletions

View File

@ -27,7 +27,7 @@ class ImportSourceSql extends ImportSourceHook
'label' => 'Resouce name',
'required' => true,
));
$form->addElement('text', 'query', array(
$form->addElement('textarea', 'query', array(
'label' => 'DB Query',
'required' => true,
));

View File

@ -17,6 +17,9 @@ form dd:after {
display: block;
content: '';
}
textarea {
height: 10em;
}
/* END of Forms */