From f72f5e8d6f4bcc228157352f97c37d067c9dc7f2 Mon Sep 17 00:00:00 2001 From: Pavan Kumar Date: Wed, 25 Feb 2026 11:24:00 +0530 Subject: [PATCH] RDKB-63298: Font size issue while accessing from iOS Reason for change: Font size issue while accessing Gateway management restricted page from iOS Test Procedure: Test for Gateway management restricted page from iOS Risks:low Priority: P2 Signed-off-by: pavankumarreddy_balireddy@comcast.com --- source/Styles/xb3/jst/includes/utility.jst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Styles/xb3/jst/includes/utility.jst b/source/Styles/xb3/jst/includes/utility.jst index 4a9c97a..e1a7a0a 100644 --- a/source/Styles/xb3/jst/includes/utility.jst +++ b/source/Styles/xb3/jst/includes/utility.jst @@ -898,10 +898,10 @@ function updateURL(url){ * return: returns $brandName+' '+$productName */ function getBrandProductName(){ - $modelName = getStr("Device.DeviceInfo.ModelName"); + $modelName = getStr("Device.DeviceInfo.ModelName"); $brandName = getStr("Device.DeviceInfo.X_RDKCENTRAL-COM_Syndication.RDKB_UIBranding.CloudUI.brandname"); $productName = getStr("Device.DeviceInfo.X_RDKCENTRAL-COM_Syndication.RDKB_UIBranding.CloudUI.productname"); - $ret = $brandName+' '+$productName; + $ret = ''+$brandName+' '+$productName+''; return $ret; }