Skip to content

Commit b8e14cb

Browse files
author
Marius Burkard
committed
Apply 2 suggestion(s) to 1 file(s)
1 parent a62112f commit b8e14cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

interface/lib/classes/plugin_backuplist.inc.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ function onShow() {
184184

185185
$backup_format = $rec['backup_format'];
186186
$backup_mode = $rec['backup_mode'];
187-
if ($backup_mode == 'borg') {
187+
if ($backup_mode === 'borg') {
188188
// Get backup format from domain config
189189
switch ($rec['backup_type']) {
190190
case 'mysql':
@@ -236,7 +236,7 @@ function onShow() {
236236

237237
if($rec['filesize'] > 0){
238238
$rec['filesize'] = $app->functions->currency_format($rec['filesize']/(1024*1024), 'client').' MB';
239-
if($backup_mode == "borg") {
239+
if($backup_mode === "borg") {
240240
$rec['filesize'] = '<a href="javascript:void(0)" data-toggle="tooltip" title="'
241241
. $wb['final_size_txt']
242242
. '"><strong>*</strong></a>'

0 commit comments

Comments
 (0)