From 6b1e6b87a0d2c93751ef86ed83cc9eace00a7d3f Mon Sep 17 00:00:00 2001 From: Naomi Date: Mon, 18 Apr 2011 15:41:11 -0400 Subject: [PATCH] better message about backing up. --- install/upgrades/airtime-1.8/airtime-upgrade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/upgrades/airtime-1.8/airtime-upgrade.php b/install/upgrades/airtime-1.8/airtime-upgrade.php index bcc1a2a75..a961bdbe5 100644 --- a/install/upgrades/airtime-1.8/airtime-upgrade.php +++ b/install/upgrades/airtime-1.8/airtime-upgrade.php @@ -48,7 +48,7 @@ $configFiles = array(AirtimeIni::CONF_FILE_AIRTIME, foreach ($configFiles as $conf) { if (file_exists($conf)) { - echo "Backing up $conf".PHP_EOL; + echo "Backing up $conf to $conf.bak".PHP_EOL; exec("cp $conf $conf.bak"); } }