aboutsummaryrefslogtreecommitdiff
path: root/model
diff options
context:
space:
mode:
authorFlorian Larysch2015-08-29 15:31:56 +0200
committerFlorian Larysch2015-08-29 15:31:56 +0200
commit502371650e4e1fe99ec382104e2eba945925a459 (patch)
tree44ff1a85b5fad6cb2ac1cf6a8e5715be4b4e6237 /model
parenta38bec4a41f5c0cb8f2061de8356a6ed86ee28e9 (diff)
kill external ReLive support
Diffstat (limited to 'model')
-rw-r--r--model/Conference.php7
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