From bfbc33898b47415722aeb606c4839aae08994e11 Mon Sep 17 00:00:00 2001 From: james Date: Tue, 7 Jun 2005 21:12:01 +0000 Subject: [PATCH] Dont allow the user to change DBVERSION via the variables configuration --- config/variables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/variables.php b/config/variables.php index f2460a1..6dd7697 100644 --- a/config/variables.php +++ b/config/variables.php @@ -54,7 +54,7 @@ echo "

".i18n("Global configuration settings")."

"; while($r=mysql_fetch_object($q)) { - if($r->var=="FAIRYEAR") + if($r->var=="FAIRYEAR" || $r->var=="DBVERSION") { echo "$r->var".i18n($r->description)."$r->val"; }