forked from GNUsocial/gnu-social
fixup exception constructor for php 5.2
This commit is contained in:
parent
704a20f58b
commit
f63355451d
@ -299,6 +299,10 @@ class oEmbedHelper
|
||||
|
||||
class oEmbedHelper_Exception extends Exception
|
||||
{
|
||||
public function __construct($message = "", $code = 0, $previous = null)
|
||||
{
|
||||
parent::__construct($message, $code, $previous);
|
||||
}
|
||||
}
|
||||
|
||||
class oEmbedHelper_BadHtmlException extends oEmbedHelper_Exception
|
||||
|
Loading…
Reference in New Issue
Block a user