- Timestamp:
- 07/13/10 20:31:34 (3 years ago)
- Files:
-
- modules/branches/2.9/conferences/functions.inc.php (modified) (1 diff)
- modules/branches/2.9/conferences/page.conferences.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
modules/branches/2.9/conferences/functions.inc.php
r10132 r10133 172 172 // admin mode -- only valid if there is an admin pin 173 173 if ($roomadminpin != '') { 174 $ext->add($contextname, $roomnum, 'ADMIN', new ext_setvar('MEETME_OPTS','aA'. trim($roomoptions,'m'));174 $ext->add($contextname, $roomnum, 'ADMIN', new ext_setvar('MEETME_OPTS','aA'.str_replace('m','',$roomoptions))); 175 175 if ($roomjoinmsg != '') { // play joining message if one defined 176 176 $ext->add($contextname, $roomnum, '', new ext_playback($roomjoinmsg)); modules/branches/2.9/conferences/page.conferences.php
r10132 r10133 412 412 413 413 // should not have a conference with no 'leader', mute on join, and no allow menu, so let's complain 414 if ($('[name=opt#m]').val() != '' && !$('[name=opt#w]').val()&& !$('[name=opt#s]').val())414 if ($('[name=opt#m]').val() != '' && $('[name=adminpin]').val() == '' && !$('[name=opt#s]').val()) 415 415 return warnInvalid(theForm.options, msgInvalidMuteOnJoin); 416 416
