forked from GNUsocial/gnu-social
Bug in catch(Exception) - parameter wrongly written
This commit is contained in:
parent
626333a59e
commit
aa5bbdf6e5
@ -2775,7 +2775,7 @@ 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);
|
||||
@ -2787,7 +2787,7 @@ class Notice extends Managed_DataObject
|
||||
// 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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user