2008-09-13 11:34:35
Atutor FAQs text size
In the course, the text of the FAQ is truncated to 250 characters. The same problem exists in ATutor Demo
Any suggestions would be welcome.
2008-09-13 11:34:35
In the course, the text of the FAQ is truncated to 250 characters. The same problem exists in ATutor Demo
Any suggestions would be welcome.
2008-09-15 09:45:21
You can open up faq/add_question.php
line 48-49,
$_POST['question'] = validate_length($_POST['question'], 250);
$_POST['answer'] = validate_length($_POST['answer'], 250);
Change 250 to the desired length you want, or simply remove these two lines if you do not want a limit.
Do the same thing for
faq/edit_question.php
line 56-57