diff options
author | Florian Larysch | 2015-08-29 15:31:56 +0200 |
---|---|---|
committer | Florian Larysch | 2015-08-29 15:31:56 +0200 |
commit | 502371650e4e1fe99ec382104e2eba945925a459 (patch) | |
tree | 44ff1a85b5fad6cb2ac1cf6a8e5715be4b4e6237 /model/Conference.php | |
parent | a38bec4a41f5c0cb8f2061de8356a6ed86ee28e9 (diff) |
kill external ReLive support
Diffstat (limited to 'model/Conference.php')
-rw-r--r-- | model/Conference.php | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/model/Conference.php b/model/Conference.php index a4c14aa..e927a2b 100644 --- a/model/Conference.php +++ b/model/Conference.php @@ -41,13 +41,10 @@ class Conference extends ModelBase } public function hasRelive() { - return $this->has('CONFERENCE.RELIVE') || $this->has('CONFERENCE.RELIVE_JSON'); + return $this->has('CONFERENCE.RELIVE_JSON'); } public function getReliveUrl() { - if($this->has('CONFERENCE.RELIVE')) - return $this->get('CONFERENCE.RELIVE'); - - elseif($this->has('CONFERENCE.RELIVE_JSON')) + if($this->has('CONFERENCE.RELIVE_JSON')) return 'relive/'; else |