From 3ea56af2c3e0d5278ffb000cf576c20d0d1fb540 Mon Sep 17 00:00:00 2001 From: fusionate Date: Thu, 9 Feb 2023 18:36:24 +0000 Subject: [PATCH] Gateways - List: Show Register value. --- app/gateways/gateways.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/gateways/gateways.php b/app/gateways/gateways.php index 28706116ad..7b79718022 100644 --- a/app/gateways/gateways.php +++ b/app/gateways/gateways.php @@ -251,6 +251,7 @@ echo th_order_by('gateway', $text['label-gateway'], $order_by, $order); echo "".$text['label-proxy']."\n"; echo th_order_by('context', $text['label-context'], $order_by, $order); + echo th_order_by('register', $text['label-register'], $order_by, $order); if ($fp) { echo "".$text['label-status']."\n"; if (permission_exists('gateway_edit')) { @@ -299,6 +300,7 @@ echo " \n"; echo " ".escape($row["proxy"])."\n"; echo " ".escape($row["context"])."\n"; + echo " ".ucwords(escape($row["register"]))."\n"; if ($fp) { if ($row["enabled"] == "true") { $response = switch_gateway_status($row["gateway_uuid"]);