diff options
Diffstat (limited to 'settings/templates/certificates.php')
-rw-r--r-- | settings/templates/certificates.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/certificates.php b/settings/templates/certificates.php index ac0a2293800..d9587f97946 100644 --- a/settings/templates/certificates.php +++ b/settings/templates/certificates.php @@ -10,7 +10,7 @@ </thead> <tbody> <?php foreach ($_['certs'] as $rootCert): /**@var \OCP\ICertificate $rootCert */ ?> - <tr class="<?php echo ($rootCert->isExpired()) ? 'expired' : 'valid' ?>" + <tr class="<?php echo $rootCert->isExpired() ? 'expired' : 'valid' ?>" data-name="<?php p($rootCert->getName()) ?>"> <td class="rootCert" title="<?php p($rootCert->getOrganization()) ?>"> |