| 1 |
<?php |
<?php |
| 2 |
/* $Id: wishlist.module,v 1.42 2007/11/29 13:26:41 smclewin Exp $ */ |
/* $Id: wishlist.module,v 1.43 2008/01/16 05:44:44 smclewin Exp $ */ |
| 3 |
// Wishlist management module for Drupal |
// Wishlist management module for Drupal |
| 4 |
// Written by Scott McLewin and Melanie Paul-McLewin |
// Written by Scott McLewin and Melanie Paul-McLewin |
| 5 |
// drupal AT mclewin DOT com |
// drupal AT mclewin DOT com |
| 713 |
array('data' => t("Action")) |
array('data' => t("Action")) |
| 714 |
); |
); |
| 715 |
|
|
| 716 |
|
$rows = array(); // if there were no records, we don't want an undefined variable notification |
| 717 |
while($wishlist_purch = db_fetch_object($result)) { |
while($wishlist_purch = db_fetch_object($result)) { |
| 718 |
if ($wishlist_purch->wishlist_purch_quantity > 1) { |
if ($wishlist_purch->wishlist_purch_quantity > 1) { |
| 719 |
$action_str = t("Return these items"); |
$action_str = t("Return these items"); |