Browse Source

Adding int id in course_edit.php

Julio Montoya 11 years ago
parent
commit
60f3098046
1 changed files with 4 additions and 0 deletions
  1. 4 0
      main/admin/course_edit.php

+ 4 - 0
main/admin/course_edit.php

@@ -89,6 +89,10 @@ $form->applyFilter('title','trim');
 $element = $form->addElement('text', 'real_code', array(get_lang('CourseCode'), get_lang('ThisValueCantBeChanged')));
 $element->freeze();
 
+// Id
+$element = $form->addElement('text', 'real_id', 'id');
+$element->freeze();
+
 // visual code
 $form->add_textfield('visual_code', array(get_lang('VisualCode'), get_lang('OnlyLettersAndNumbers'), get_lang('ThisValueIsUsedInTheCourseURL')), true, array('class' => 'span4'));