From b8396d4c8482e951da538b13f2296123732c4545 Mon Sep 17 00:00:00 2001 From: slawkens Date: Sun, 29 Dec 2024 15:46:02 +0100 Subject: [PATCH] Fix for TFS 1.4.2 where conditions is NULL --- system/libs/pot/OTS_Player.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/system/libs/pot/OTS_Player.php b/system/libs/pot/OTS_Player.php index 1cc1a7cd..478450b5 100644 --- a/system/libs/pot/OTS_Player.php +++ b/system/libs/pot/OTS_Player.php @@ -1752,11 +1752,6 @@ class OTS_Player extends OTS_Row_DAO */ public function getConditions() { - if( !isset($this->data['conditions']) ) - { - throw new E_OTS_NotLoaded(); - } - return $this->data['conditions']; }