diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-16 02:50:59 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-16 02:50:59 +0000 |
commit | 3c18ad46ae5151a30d08f669f2e4271f7a3009ec (patch) | |
tree | feadba1557f29949dc60b99ada33b7fa861bbdca /lib | |
parent | 03221906071c7669b6c1d8a7ab5afc0deb4f26f8 (diff) | |
parent | 38ad44f6325a71d290d7582744efbb11bbe1c122 (diff) |
Merge branch 'uiredesign' of ../evan into uiredesign
Diffstat (limited to 'lib')
-rw-r--r-- | lib/common.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/common.php b/lib/common.php index 74c992f1c..2ef26cfc6 100644 --- a/lib/common.php +++ b/lib/common.php @@ -169,5 +169,7 @@ function __autoload($class) require_once('OAuth.php'); } else if (file_exists(INSTALLDIR.'/classes/' . $class . '.php')) { require_once(INSTALLDIR.'/classes/' . $class . '.php'); + } else if (file_exists(INSTALLDIR.'/lib/' . strtolower($class) . '.php')) { + require_once(INSTALLDIR.'/lib/' . strtolower($class) . '.php'); } } |