diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-01-22 22:36:16 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-01-22 22:36:16 +0400 |
| commit | 50832719563627e958f92ba2a2b7b8c2b4fed47e (patch) | |
| tree | 5ccf2153d1b56c966a6d33352b91c9cd573aa064 /opml.php | |
| parent | 87d7e8507a4a41c4e0d7a4f2d54fe48f3a6f72cb (diff) | |
move some more functions out of functions.php; fix opml.php failing due to redeclared autoload
Diffstat (limited to 'opml.php')
| -rw-r--r-- | opml.php | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -2,13 +2,6 @@ set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR . get_include_path()); - function __autoload($class) { - $file = "classes/".strtolower(basename($class)).".php"; - if (file_exists($file)) { - require $file; - } - } - require_once "functions.php"; require_once "sessions.php"; require_once "sanity_check.php"; |