From: Brion Vibber Date: Wed, 17 Feb 2010 18:12:37 +0000 (-0800) Subject: Fix exception on bad plugin load X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=e8275aa60abd381de9e95c29fd00819c81d3db79;p=quix0rs-gnu-social.git Fix exception on bad plugin load --- diff --git a/lib/statusnet.php b/lib/statusnet.php index 9c7ede5a5d..257bd861da 100644 --- a/lib/statusnet.php +++ b/lib/statusnet.php @@ -63,7 +63,7 @@ class StatusNet } } if (!class_exists($pluginclass)) { - throw new ServerException(500, "Plugin $name not found."); + throw new ServerException("Plugin $name not found.", 500); } }