Wishlist gets undefined variable wl_reveal at line 959

kwikone - January 16, 2008 - 16:30
Project:Wishlist Module
Version:6.x-2.1-beta
Component:Code
Category:bug report
Priority:normal
Assigned:Unassigned
Status:closed
Description

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;
}
}

#1

scott.mclewin - January 26, 2008 - 23:06
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.

#2

Anonymous (not verified) - February 9, 2008 - 23:12
Status:fixed» closed

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

 
 

Drupal is a registered trademark of Dries Buytaert.