From 4d4c971953ee3da8282ff748c15241f85d984dab Mon Sep 17 00:00:00 2001 From: Iain Patterson Date: Mon, 13 May 2013 04:47:06 -0400 Subject: [PATCH] Use get_order_summary() in Contact display. Use the new get_order_summary() function when showing a Contact's order history. --- lib/contact.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/contact.php b/lib/contact.php index 2dd65ab..874c918 100644 --- a/lib/contact.php +++ b/lib/contact.php @@ -191,9 +191,9 @@ echo "\n"; echo "\n"; - echo " \n"; + echo " \n"; foreach ($orders as $order) { - echo " Order " . $order->getStrongLink($order->getId()) . ": " . get_order_displayname($order) . "
\n"; + echo " " . get_order_summary($order) . "
\n"; } echo " \n"; echo "\n"; -- 2.7.4