PHP 8 modifications

modifications to avoid "Deprecated" warnings in sql_connect function
This commit is contained in:
buckaroo-labs 2023-12-20 16:40:51 -08:00 committed by GitHub
parent 1528110257
commit 969a80b478
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -30,7 +30,12 @@ class sql_db
var $rowset = array();
var $num_queries = 0;
var $last_query_text = "";
/* 2023-12-20 modifications to avoid "Deprecated" warnings in sql_connect function*/
var $user;
var $persistency;
var $dbname;
var $server;
/*2023-12-20 end */
//
// Constructor
//
@ -465,4 +470,4 @@ class sql_db
} // if ... define
?>
?>