Quote:
Originally Posted by tamarian
Glad you got it to work
It's already available. Just edit the multiple choice question, change it from vertical to dropdown, then it will become a select box allowing multiple picks.
I've overlooked this, but it does make sense. Download the new zip file, and just upload 2 files:
1. survey/templates/Default/available_surveys.tpl
2. survey/classes/survey.class.php
|
You are DA-MAN!!!
Thanks.
BTW, I added the following to survey.php to keep people who didn't belong in the survey page in the first place completely out:
Find:
PHP Code:
require("./global.php");
require('survey/classes/main.class.php');
Paste After:
PHP Code:
// enabled check
if (!$vboptions['enablememberlist'])
{
eval(print_standard_error('error_nomemberlist'));
}
// permissions check
if (!($permissions['forumpermissions'] & CANVIEW) OR !($permissions['genericpermissions'] & CANVIEWMEMBERS))
{
print_no_permission();
}