From ba4c321b79869531a3d347d66dca62d93a3baa8d Mon Sep 17 00:00:00 2001
From: Herman van Rink <rink@initfour.nl>
Date: Thu, 20 Apr 2023 22:50:26 +0200
Subject: [PATCH] Hide the info tab when creating a new client.

---
 interface/web/client/client_edit.php | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/interface/web/client/client_edit.php b/interface/web/client/client_edit.php
index b1c96e0679..1e53bb1fed 100644
--- a/interface/web/client/client_edit.php
+++ b/interface/web/client/client_edit.php
@@ -70,6 +70,10 @@ class page_action extends tform_actions {
 			}
 		}
 
+		// Hide the info tab when creating a new client.
+		unset($app->tform->formDef["tabs"]['info']);
+		$app->tform->formDef["tab_default"] = "address";
+
 		parent::onShowNew();
 	}
 
-- 
GitLab