Explorar o código

PHP Notice Fix (when burn after reading is selected) : Notice: Undefined property: stdClass::$expire_date in /ZeroBin/index.php on line 289

Erwan %!s(int64=14) %!d(string=hai) anos
pai
achega
e71e7cfce6
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      index.php

+ 1 - 1
index.php

@@ -286,7 +286,7 @@ if (!empty($_SERVER['QUERY_STRING']))  // Display an existing paste.
             if ($ERRORMESSAGE=='') // If no error, return the paste.
             {
                 // We kindly provide the remaining time before expiration (in seconds)
-                if ($paste->meta->expire_date) $paste->meta->remaining_time = $paste->meta->expire_date - time();
+                if (property_exists($paste->meta, 'expire_date')) $paste->meta->remaining_time = $paste->meta->expire_date - time();
 
                 $messages = array($paste); // The paste itself is the first in the list of encrypted messages.
                 // If it's a discussion, get all comments.