aboutsummaryrefslogtreecommitdiff
path: root/model/Conference.php
diff options
context:
space:
mode:
Diffstat (limited to 'model/Conference.php')
-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