From 864bbcddfa996d9fab0500a1e372102c0c409ff8 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Sun, 19 Oct 2008 21:16:34 +0000 Subject: [PATCH] Correct tagfile_deformat() call --- etc/inc/config.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/inc/config.inc b/etc/inc/config.inc index d08cd2ced2..3c3e324183 100644 --- a/etc/inc/config.inc +++ b/etc/inc/config.inc @@ -216,7 +216,7 @@ function encrypted_configxml() { if(file_exists($g['conf_path'] . "/config.xml")) { if($g['booting']) { $configtxt = file_get_contents($g['conf_path'] . "/config.xml"); - if(!tagfile_deformat($configtxt, $configtxt, "config.xml")) { + if(tagfile_deformat($configtxt, $configtxt, "config.xml")) { $fp = fopen('php://stdin', 'r'); $data = ""; echo "\n\n*** Encrypted config.xml detected ***\n";