PHP Notice Bug fix (Notice: Undefined property: stdClass::$burafterreading & $opendiscussion)
This commit is contained in:
parent
50272a678f
commit
c585f0d712
1 changed files with 54 additions and 54 deletions
|
@ -290,7 +290,7 @@ if (!empty($_SERVER['QUERY_STRING'])) // Display an existing paste.
|
|||
|
||||
$messages = array($paste); // The paste itself is the first in the list of encrypted messages.
|
||||
// If it's a discussion, get all comments.
|
||||
if ($paste->meta->opendiscussion)
|
||||
if (property_exists($paste->meta, 'opendiscussion'))
|
||||
{
|
||||
$comments=array();
|
||||
$datadir = dataid2discussionpath($dataid);
|
||||
|
@ -318,7 +318,7 @@ if (!empty($_SERVER['QUERY_STRING'])) // Display an existing paste.
|
|||
$CIPHERDATA = json_encode($messages);
|
||||
|
||||
// If the paste was meant to be read only once, delete it.
|
||||
if ($paste->meta->burnafterreading) deletePaste($dataid);
|
||||
if (property_exists($paste->meta, 'burnafterreading')) deletePaste($dataid);
|
||||
}
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue