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 /admin/subscriptions.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 'admin/subscriptions.php')
-rwxr-xr-x | admin/subscriptions.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/admin/subscriptions.php b/admin/subscriptions.php index 3612666..8367a16 100755 --- a/admin/subscriptions.php +++ b/admin/subscriptions.php @@ -1,6 +1,7 @@ <?php -require_once dirname(__FILE__) . '/inc/auth.inc.php'; + require_once dirname(__FILE__) . '/../app/app.php'; +require_once dirname(__FILE__) . '/inc/auth.inc.php'; function removeSlashes(&$item, $key){ $item = stripslashes($item); |