]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
OAuthException should be detected for autoloading
authorMikael Nordfeldth <mmn@hethane.se>
Sun, 9 Mar 2014 21:17:58 +0000 (22:17 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Sun, 9 Mar 2014 21:17:58 +0000 (22:17 +0100)
Or we may have conflicts with other filesin not in extlib.

lib/framework.php

index 76ba549098effb2f27abee3607bbba55b3356763..9ff176e248a76d27e7332d043183335f5fe87c56 100644 (file)
@@ -114,7 +114,7 @@ function __autoload($cls)
     } else if (mb_substr($cls, -6) == 'Action' &&
                file_exists(INSTALLDIR.'/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php')) {
         require_once(INSTALLDIR.'/actions/' . strtolower(mb_substr($cls, 0, -6)) . '.php');
-    } else if ($cls == 'OAuthRequest') {
+    } else if ($cls === 'OAuthRequest' || $cls === 'OAuthException') {
         require_once('OAuth.php');
     } else {
         Event::handle('Autoload', array(&$cls));