From 83e6637c844b51f959138531530e014d4d413697 Mon Sep 17 00:00:00 2001 From: Alex Cabal Date: Mon, 15 Jan 2024 00:22:16 -0600 Subject: [PATCH] Remove default default --- lib/Artist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Artist.php b/lib/Artist.php index 9cc033d6..6579f6a4 100644 --- a/lib/Artist.php +++ b/lib/Artist.php @@ -43,7 +43,7 @@ class Artist extends PropertiesBase{ SELECT * from ArtistAlternateSpellings where ArtistId = ? - ', [$this->ArtistId], 'stdClass'); + ', [$this->ArtistId]); foreach($result as $row){ $this->_AlternateSpellings[] = $row->AlternateSpelling;