Modified:
/trunk/Geekzbookshelf2/data/order.class.php
=======================================
--- /trunk/Geekzbookshelf2/data/order.class.php Mon Dec 13 00:01:04 2010
+++ /trunk/Geekzbookshelf2/data/order.class.php Mon Dec 13 19:00:18 2010
@@ -133,20 +133,20 @@
$customer->setB_Addr_Line2($_REQUEST["b_addr_line2"]);
$customer->setB_City($_REQUEST["b_city"]);
$customer->setB_Zip($_REQUEST["b_zip"]);
- $customer->setB_Phone($_REQUEST["b_phone"]);
+ //$customer->setB_Phone($_REQUEST["b_phone"]);
$customer->setB_Country($_REQUEST["b_country"]);
$id_billing = $customer->saveCustomer_BillingInfo();
- echo "<p>Billing ID: $id_billing (for testing
order.class.php)</p>";
+ //echo "<p>Billing ID: $id_billing (for testing
order.class.php)</p>";
//
$customer->setS_name($_REQUEST["s_name"]);
$customer->setS_Addr_Line1($_REQUEST["s_addr_line1"]);
$customer->setS_Addr_Line2($_REQUEST["s_addr_line2"]);
$customer->setS_City($_REQUEST["s_city"]);
$customer->setS_Zip($_REQUEST["s_zip"]);
- $customer->setS_Phone($_REQUEST["s_phone"]);
+ //$customer->setS_Phone($_REQUEST["s_phone"]);
$customer->setS_Country($_REQUEST["s_country"]);
$id_shipping = $customer->saveCustomer_ShippingInfo();
- echo "<p>Shipping ID: $id_shipping (for testing
order.class.php)</p>";
+ //echo "<p>Shipping ID: $id_shipping (for testing
order.class.php)</p>";
echo "<p><b>Customer is not registered</b></p>";
echo $customer->getBillInfo();
echo $customer->getShipInfo();