diff options
| author | nashe <contact@nashe.fr> | 2015-08-11 11:59:40 +0200 |
|---|---|---|
| committer | nashe <contact@nashe.fr> | 2015-08-11 11:59:40 +0200 |
| commit | f2788a4ed2eae7f0056ab200b8fc787ed20a32da (patch) | |
| tree | c9c5ded4176bb6390f6f5773ebfa2f8b91d67a5a /app/app.php | |
| parent | e47418ee75998ae22a506b8fd596dbba58388266 (diff) | |
| download | planet-f2788a4ed2eae7f0056ab200b8fc787ed20a32da.tar planet-f2788a4ed2eae7f0056ab200b8fc787ed20a32da.tar.gz planet-f2788a4ed2eae7f0056ab200b8fc787ed20a32da.tar.bz2 planet-f2788a4ed2eae7f0056ab200b8fc787ed20a32da.tar.xz planet-f2788a4ed2eae7f0056ab200b8fc787ed20a32da.zip | |
Fix class autoloading
Made some mistakes with my last PR: I tested that everything were
working, but on the wrong branch.
This commit fixes all the autoloading error that were left.
Diffstat (limited to 'app/app.php')
| -rwxr-xr-x | app/app.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/app/app.php b/app/app.php index 702c3cc..eb6d6cf 100755 --- a/app/app.php +++ b/app/app.php @@ -10,16 +10,6 @@ if ($debug) { require_once __DIR__.'/../vendor/autoload.php'; -include(dirname(__FILE__).'/lib/lib.opml.php'); -include(dirname(__FILE__).'/lib/spyc-0.5/spyc.php'); - -include_once(dirname(__FILE__).'/classes/PlanetConfig.php'); -include_once(dirname(__FILE__).'/classes/PlanetFeed.php'); -include_once(dirname(__FILE__).'/classes/PlanetItem.php'); -include_once(dirname(__FILE__).'/classes/PlanetError.php'); -include_once(dirname(__FILE__).'/classes/Planet.class.php'); -include_once(dirname(__FILE__).'/classes/Simplel10n.class.php'); - $savedConfig = dirname(__FILE__).'/../custom/config.yml'; $moon_version = file_get_contents(dirname(__FILE__).'/../VERSION'); |
