Various new features.

This commit is contained in:
Cody Cook 2024-04-30 19:38:37 -07:00
commit 36e6e23a68
14 changed files with 437 additions and 523 deletions

View file

@ -16,7 +16,7 @@ class DJ
private string $created = "";
private string $updated = "";
private string $claimed_by = "";
private $db = null;
private mysqli $db;
public function __construct($value, $db)
@ -125,8 +125,8 @@ class DJ
if (isset($dj['created'])) {
$this->created = $dj['created'];
}
if (isset($dj['updated'])) {
$this->updated = $dj['updated'];
if (isset($dj['lastupdated'])) {
$this->updated = $dj['lastupdated'];
}
return true;