08-02-2010, 06:07 PM
Ok, friends, a quick fix for the problem above is to replace the line 60 or 61 (don't remember) in op.FolderNotify.php
from
if (isset($_GET["groupid"])){
to
if ($_GET["groupid"]>0){
because the "groupid" is always set, but in case no group is selected, this variable becomes "-1", therefore the check to be more than "0"
from
if (isset($_GET["groupid"])){
to
if ($_GET["groupid"]>0){
because the "groupid" is always set, but in case no group is selected, this variable becomes "-1", therefore the check to be more than "0"