load Private as well as Name,Value from Config

This commit is contained in:
Isaac Connor 2022-01-22 12:31:15 -05:00
parent 35efb111ac
commit ce2d605b3d
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ function loadConfig( $defineConsts=true ) {
$config = array();
$result = $dbConn->query('SELECT Name,Value FROM Config');
$result = $dbConn->query('SELECT Name,Value,Private FROM Config');
if ( !$result )
echo mysql_error();
while( $row = dbFetchNext($result) ) {