Wishlist.module gets undefined variable wl_reveal at line 959.

		if(user_access('reveal purchase status')) {
			if($_GET['wl_reveal'] != 0) {
				return false;
			}
		}

Can be resolved by...

		if(user_access('reveal purchase status')) {
			if(isset($_GET['wl_reveal']) && ($_GET['wl_reveal'] != 0)) {
				return false;
			}
		}

Comments

scott.mclewin’s picture

Status: Needs review » Fixed

I appreciate the level of detail you are giving the module, and certainly appreciate little patches to speed along inclusion of the changes in CVS.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.