From fd72dab6b0aadb143b856d11c3e90f48f1db9228 Mon Sep 17 00:00:00 2001 From: earnolmartin Date: Thu, 9 Nov 2023 09:03:58 -0700 Subject: [PATCH] Allow Tabbing on Global Custom Templates as Well --- ehcp/classapp.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ehcp/classapp.php b/ehcp/classapp.php index 70d3a8d..3da7a5c 100755 --- a/ehcp/classapp.php +++ b/ehcp/classapp.php @@ -2134,7 +2134,7 @@ organizationalUnitName = $unit_name"; array('clearTemplate', 'submit', 'default' => 'Revert to Default'), array('op', 'hidden', 'default' => __FUNCTION__) ); - $this->output .= '

' . $this->selecteddomain . ' Using Default Template: ' . ($usingDefault ? 'YES' : 'NO') . '

' . inputform5($inputparams) . '
'; + $this->output .= '

' . $this->selecteddomain . ' Using Default Template: ' . ($usingDefault ? 'YES' : 'NO') . '

' . inputform5($inputparams) . '
'; } else { if ($clearTemplate) { $success = $success && $this->executeQuery("update " . $this->conf['domainstable']['tablename'] . " set $templatefield='' where domainname='" . $domainname . "'"); @@ -7118,7 +7118,7 @@ email2@domain2.com:password2
array('op', 'hidden', 'default' => __FUNCTION__) ); - $this->output .= "
Edit Global Website Templates
Currently Using Default Template:
" . inputform5($inputparams); + $this->output .= "
Edit Global Website Templates
Currently Using Default Template:
" . inputform5($inputparams) . "
"; } else { if ($clearTemplate) { $success = $this->revertTemplateBackToEHCPDefault($template_file, $webserver_type, $webserver_mode);