From ffeb4bc6f9ab57546a5b9fc21f242970c8a88ae8 Mon Sep 17 00:00:00 2001 From: Frank Wall Date: Thu, 26 Jan 2017 20:21:34 +0100 Subject: [PATCH] UIModelGrid: use empty string instead of "##Unlinked" --- src/opnsense/mvc/app/library/OPNsense/Base/UIModelGrid.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/opnsense/mvc/app/library/OPNsense/Base/UIModelGrid.php b/src/opnsense/mvc/app/library/OPNsense/Base/UIModelGrid.php index 56edbee9a..ee00c4228 100644 --- a/src/opnsense/mvc/app/library/OPNsense/Base/UIModelGrid.php +++ b/src/opnsense/mvc/app/library/OPNsense/Base/UIModelGrid.php @@ -116,7 +116,7 @@ class UIModelGrid } } if (empty($row[$fieldname])) { - $row[$fieldname] = "##Unlinked"; + $row[$fieldname] = ""; } } }