Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Critical
-
Resolution: Unresolved
-
Affects Version/s: 1.9.3
-
Fix Version/s: None
-
Component/s: Module: DimDim
-
Labels:None
-
Environment:Moodlerooms hosted 1.9.3+
-
Affected Branches:MOODLE_19_STABLE
Description
After setting up DimDim meeting, when viewing the DimDim page, "Click here to Start Meeting" is only available to Administrator role, not Teacher role. Teacher should be able to add DimDim activity to course and start the meeting on own.
This is noted on moodle.org forums here:
http://moodle.org/mod/forum/discuss.php?d=112192
And possibly solved here:
http://sourceforge.net/forum/forum.php?thread_id=2071578&forum_id=613324
RE: Only Admin user can start meeting. No Tea
By: Rajesh Dharmalingam (dimdim_raj) - 2008-06-09 05:21
Hi,
Can you try this.
Open "view.php" file it will be available at "\moodle\moodle\mod\dimdim" this location.
For Dimdim_Alpha_1_6_Moodle_1_9_Integration_Pack, change the code
if(dimdim_is_teacher($dimdim))
to
if ($PAGE->user_allowed_editing())
Please do let us know if this solves your problem.
Regards,
-Rajesh
rajesh@dimdim.com
Is this something that should be done to the cvs for this activity?
clark
Attachments
Issue Links
| This issue will be resolved by: | ||||
| CONTRIB-1654 | Version supplied by DImDIm not functional |
|
|
|
Solution from above comment solved the problem.
I edited file view.php from mod/dimdim folder. Changing this "if (dimdim_is_teacher($dimdim))" to "if ($PAGE->user_allowed_editing())" is all You need to do, so teacher can start meetings.