summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/diag_confbak.php
diff options
context:
space:
mode:
authorstilez <stilez@users.noreply.github.com>2016-05-24 10:15:03 +0100
committerstilez <stilez@users.noreply.github.com>2016-05-24 10:15:03 +0100
commit16b17c15f9fc29e9480431b5bc7bebe2bd4b6230 (patch)
tree40636cadaa6b0ddbdd9d14805d7839504a0ca69b /src/usr/local/www/diag_confbak.php
parent09a283948eada745bc10b852e63b7dec50fb69d4 (diff)
downloadpfsense-16b17c15f9fc29e9480431b5bc7bebe2bd4b6230.zip
pfsense-16b17c15f9fc29e9480431b5bc7bebe2bd4b6230.tar.gz
fix logic and replace hard coded value by global
backups should be a numeric int. text hint for number of backups can now refer to the global value for this platform (and explains how to get that default, by leaving blank)
Diffstat (limited to 'src/usr/local/www/diag_confbak.php')
-rw-r--r--src/usr/local/www/diag_confbak.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/local/www/diag_confbak.php b/src/usr/local/www/diag_confbak.php
index 147238f..e951ef6 100644
--- a/src/usr/local/www/diag_confbak.php
+++ b/src/usr/local/www/diag_confbak.php
@@ -64,7 +64,7 @@
require("guiconfig.inc");
if (isset($_POST['backupcount'])) {
- if (is_numeric($_POST['backupcount']) && ($_POST['backupcount'] >= 0)) {
+ if (is_numericint($_POST['backupcount']) && ($_POST['backupcount'] >= 0)) {
$config['system']['backupcount'] = $_POST['backupcount'];
$changedescr = $config['system']['backupcount'];
} else {
@@ -193,7 +193,7 @@ $section->addInput(new Form_Input(
'Backup Count',
'number',
$config['system']['backupcount']
-))->setHelp('Maximum number of old configurations to keep in the cache. By default this is 30 for a full install or 5 on NanoBSD. ');
+))->setHelp('Maximum number of old configurations to keep in the cache, 0 for no backups, or leave blank for the default value (' . $g['default_config_backup_count'] . ' for the current platform).');
$space = exec("/usr/bin/du -sh /conf/backup | /usr/bin/awk '{print $1;}'");
OpenPOWER on IntegriCloud