mirror of https://github.com/BOINC/boinc.git
fix PHP 7 Deprecated
This commit is contained in:
parent
8872445b57
commit
4dd83c9db4
|
@ -236,7 +236,7 @@ class SqlQueryString {
|
|||
var $query;
|
||||
var $urlquery;
|
||||
|
||||
function SqlQueryString() {
|
||||
function __construct() {
|
||||
if (isset($_GET['table'])) {
|
||||
$this->table = $_GET['table'];
|
||||
} else {
|
||||
|
|
|
@ -36,7 +36,7 @@ class output_options {
|
|||
|
||||
// Constructor - set the defaults.
|
||||
|
||||
function output_options() {
|
||||
function __construct() {
|
||||
$this->bb2html = 1;
|
||||
$this->images_as_links = 0;
|
||||
$this->link_popup = 0;
|
||||
|
|
Loading…
Reference in New Issue