mirror of
https://github.com/webmin/webmin.git
synced 2026-03-20 16:50:24 +00:00
Long line fixes
This commit is contained in:
@@ -107,7 +107,8 @@ if (!$in{'save'}) {
|
||||
# Run and check before-backup command (for all DBs)
|
||||
$bok = &execute_before(undef, STDOUT, 1, $in{'file'}, undef);
|
||||
if (!$bok) {
|
||||
print "$main::whatfailed : ",$text{'backup_ebefore'},"<p>\n";
|
||||
print "$main::whatfailed : ",
|
||||
$text{'backup_ebefore'},"<p>\n";
|
||||
goto donebackup;
|
||||
}
|
||||
}
|
||||
@@ -124,9 +125,11 @@ if (!$in{'save'}) {
|
||||
}
|
||||
if ($cron && $cmode == 0) {
|
||||
# Run and check before-backup command (for one DB)
|
||||
$bok = &execute_before($db, STDOUT, 1, $file, $in{'all'} ? undef : $db);
|
||||
$bok = &execute_before($db, STDOUT, 1, $file,
|
||||
$in{'all'} ? undef : $db);
|
||||
if (!$bok) {
|
||||
print "$main::whatfailed : ",$text{'backup_ebefore'},"<p>\n";
|
||||
print "$main::whatfailed : ",
|
||||
$text{'backup_ebefore'},"<p>\n";
|
||||
next;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user