From c0a31c3bd0cca6c99859ee0432325e993dcbb82b Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Sun, 27 Mar 2011 18:46:03 -0700 Subject: [PATCH] Long line fixes --- mysql/backup_db.cgi | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/mysql/backup_db.cgi b/mysql/backup_db.cgi index e1a491319..3ab0d916f 100755 --- a/mysql/backup_db.cgi +++ b/mysql/backup_db.cgi @@ -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'},"

\n"; + print "$main::whatfailed : ", + $text{'backup_ebefore'},"

\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'},"

\n"; + print "$main::whatfailed : ", + $text{'backup_ebefore'},"

\n"; next; } }