diff options
author | Maurice Svay <maurice@svay.com> | 2012-03-08 03:44:25 -0800 |
---|---|---|
committer | Maurice Svay <maurice@svay.com> | 2012-03-08 03:44:25 -0800 |
commit | ef476988794f020466f7a0208385f94a7e4b71a9 (patch) | |
tree | 537418ccbda4d78eb3312795b84d92b43aaeab3c /admin/index.php | |
parent | 41ec00699d5f86cc868984600d3676821caed83f (diff) | |
parent | 60b537a088b2052896447a078948748ea43084a6 (diff) | |
download | planet-ef476988794f020466f7a0208385f94a7e4b71a9.tar planet-ef476988794f020466f7a0208385f94a7e4b71a9.tar.gz planet-ef476988794f020466f7a0208385f94a7e4b71a9.tar.bz2 planet-ef476988794f020466f7a0208385f94a7e4b71a9.tar.xz planet-ef476988794f020466f7a0208385f94a7e4b71a9.zip |
Merge pull request #19 from pascalchevrel/installProcess
fix install process and admin section which are currently broken because...
Diffstat (limited to 'admin/index.php')
-rwxr-xr-x[-rw-r--r--] | admin/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/index.php b/admin/index.php index b075206..1a43020 100644..100755 --- a/admin/index.php +++ b/admin/index.php @@ -1,7 +1,7 @@ <?php
require_once dirname(__FILE__) . '/inc/auth.inc.php';
-require_once(dirname(__FILE__) . '/../app/classes/Planet.class.php');
+require_once dirname(__FILE__) . '/../app/app.php';
//Load configuration
$config_file = dirname(__FILE__) . '/../custom/config.yml';
|