]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Bug in catch(Exception) - parameter wrongly written
authorabjectio <abjectio@kollektivet0x242.no>
Fri, 16 Oct 2015 21:48:05 +0000 (23:48 +0200)
committerabjectio <abjectio@kollektivet0x242.no>
Fri, 16 Oct 2015 21:48:05 +0000 (23:48 +0200)
classes/Notice.php

index 78ee18a980faf8e9ed8827a74de4f6efed2c70c7..ebbd9e0462b7e64cb416c1a1eda7c8fd8076885c 100644 (file)
@@ -2775,19 +2775,19 @@ class Notice extends Managed_DataObject
 
     public function getParent()
     {
-       $reply_to_id = NULL;
+       $reply_to_id = null;
 
         if (empty($this->reply_to)) {
             throw new NoParentNoticeException($this);
         }
 
-       //The reply_to ID in the table Notice could exist with a number
-       //however, the replied to notice might not exist in the database.
-       //Thus we need to catch the exception and throw the NoParentNoticeException else 
-       //the timeline will not display correctly.
+       // The reply_to ID in the table Notice could exist with a number
+       // however, the replied to notice might not exist in the database.
+       // Thus we need to catch the exception and throw the NoParentNoticeException else 
+       // the timeline will not display correctly.
        try {
                $reply_to_id = self::getByID($this->reply_to);
-       } catch(Exception e$){
+       } catch(Exception $e){
                throw new NoParentNoticeException($this);
        }