From: Antoine Musso Date: Wed, 1 Aug 2012 10:46:54 +0000 (+0200) Subject: autoloader entry for UserNotLoggedIn class X-Git-Tag: 1.31.0-rc.0~22891^2 X-Git-Url: http://git.cyclocoop.org/data/Fool?a=commitdiff_plain;h=ddd162ef8b494c39c1b4063e5af22544bfd70a99;p=lhc%2Fweb%2Fwiklou.git autoloader entry for UserNotLoggedIn class I have forgot to add an autoloader entry for the new exception class named UserNotLoggedIn (introduced by Id8127299 / b1c1448d). Change-Id: Ib7226c8532fd695edf78f0e4c33b91edbf8ed52e --- diff --git a/includes/AutoLoader.php b/includes/AutoLoader.php index 2987b31a6c..7e11f3ef64 100644 --- a/includes/AutoLoader.php +++ b/includes/AutoLoader.php @@ -256,6 +256,7 @@ $wgAutoloadLocalClasses = array( 'UserArray' => 'includes/UserArray.php', 'UserArrayFromResult' => 'includes/UserArray.php', 'UserBlockedError' => 'includes/Exception.php', + 'UserNotLoggedIn' => 'includes/Exception.php', 'UserMailer' => 'includes/UserMailer.php', 'UserRightsProxy' => 'includes/UserRightsProxy.php', 'ViewCountUpdate' => 'includes/ViewCountUpdate.php',