From: Evan Prodromou Date: Mon, 20 Dec 2010 23:28:21 +0000 (-0500) Subject: fixup exception constructor for php 5.2 X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=f63355451d9a3618bc21e621a1b019eefc6fc48a;p=quix0rs-gnu-social.git fixup exception constructor for php 5.2 --- diff --git a/lib/oembedhelper.php b/lib/oembedhelper.php index 84cf105867..4b3559ffd8 100644 --- a/lib/oembedhelper.php +++ b/lib/oembedhelper.php @@ -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