Minor - Bigger space for course titles

skala
Julio Montoya 14 years ago
parent e77f10df04
commit 4914461c8c
  1. 2
      main/admin/course_add.php
  2. 2
      main/create_course/add_course.php

@ -55,7 +55,7 @@ $form = new FormValidator('update_course');
$form->addElement('header', '', $tool_name);
// Title
$form->add_textfield('title', get_lang('Title'), true, array ('size' => '60'));
$form->add_textfield('title', get_lang('Title'), true, array ('class' => 'span6'));
$form->applyFilter('title', 'html_filter');
$form->applyFilter('title', 'trim');

@ -90,7 +90,7 @@ $form = new FormValidator('add_course');
$form->addElement('header', '', $tool_name);
// Title
$form->addElement('text', 'title', array(get_lang('CourseName'), get_lang('Ex')), array('size' => '60', 'id' => 'title'));
$form->addElement('text', 'title', array(get_lang('CourseName'), get_lang('Ex')), array('class' => 'span6', 'id' => 'title'));
$form->applyFilter('title', 'html_filter');
$form->addRule('title', get_lang('ThisFieldIsRequired'), 'required');

Loading…
Cancel
Save