mirror of
https://github.com/voc/streaming-website
synced 2024-11-10 14:44:21 +00:00
Fix deref of null object that breaks in PHP 7.4
This commit is contained in:
parent
0ff6af6b0d
commit
e6ca9b0f59
1 changed files with 1 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<div class="container about">
|
||||
<? if($conference->getTitle() != $next['name']): ?>
|
||||
<? if ($next != null && $conference->getTitle() != $next['name']): ?>
|
||||
<h1><?=h($conference->getTitle())?> is over!</h1>
|
||||
<? endif ?>
|
||||
|
||||
|
|
Loading…
Reference in a new issue