Skip to content
This repository has been archived by the owner on May 9, 2021. It is now read-only.

Commit

Permalink
fix config.app.php not been found
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBiggerGuy committed Apr 15, 2012
1 parent c3d33a2 commit 85ab0fc
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions index.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php

/* Redirect if we have not installed */
if(!file_exists(__DIR__ . 'config.app.php'))
if(!file_exists(__DIR__ . '/config.app.php'))
{
header('Location: ./install');
}
Expand All @@ -11,4 +11,7 @@
require 'app/paths.php';
unset($web);

require path('sys').'laravel.php';
require path('sys').'laravel.php';

?>

0 comments on commit 85ab0fc

Please sign in to comment.