]> git.mxchange.org Git - friendica.git/commitdiff
Wrap class OAuthException with !class_exists
authorCarsten Pfeiffer <carsten.pfeiffer@gebit.de>
Sat, 27 Apr 2013 19:08:45 +0000 (21:08 +0200)
committerCarsten Pfeiffer <carsten.pfeiffer@gebit.de>
Sat, 27 Apr 2013 19:08:45 +0000 (21:08 +0200)
Same problem and solution as discussed on
https://drupal.org/node/1334528

library/OAuth1.php

index 0db6fabcbe8c490f06885e3213d465712ee642e8..53b905e7714a5cbdc3d8effc40157d554958ddb5 100644 (file)
@@ -3,8 +3,10 @@
 
 /* Generic exception class
  */
-class OAuthException extends Exception {
-  // pass
+if (!class_exists('OAuthException')) {
+       class OAuthException extends Exception {
+               // pass
+       }
 }
 
 class OAuthConsumer {