I got it working under v2.0.3 with just a two minor adjustments:
Instead of doing what the instructions tell u to in
mod/index.php (you won't find the code to replace). Do this:
find:
PHP Code:
<a href="moderate.php?s=<?php echo $session[sessionhash]; ?>&action=posts"> Moderate New Posts </a><br>
bellow it add:
PHP Code:
<!-- // Moderation Queue for Calendar Events (v1.0) -->
<a href="moderate.php?s=<?php echo $session[sessionhash]; ?>&action=calendar"> Moderate New Calendar Events </a><br>
<!-- // Moderation Queue for Calendar Events (v1.0) -->
And finaly to prevent unmoderated events from showing up on the calendar, in
admin/calendar.php :
find:
PHP Code:
LIKE '$year-$doublemonth-%' AND ((userid = '$bbuserinfo[userid]' AND public = 0) OR (public = 1))");
replace it with:
PHP Code:
LIKE '$year-$doublemonth-%' AND ((userid = '$bbuserinfo[userid]' AND public = 0) OR (public = 1)) AND visible=1");
That is, works like a charm - thanx firefly