PHP 8 modifications

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

View file

@ -32,7 +32,12 @@ class sql_db
var $rowset = array();
var $row_index;
var $num_queries = 0;
/* 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
//
@ -414,4 +419,4 @@ class sql_db
} // if ... define
?>
?>