Skip to content

Commit

Permalink
Merge pull request yiisoft#2239 from creocoder/aliases-fix
Browse files Browse the repository at this point in the history
Wrong path fixes
  • Loading branch information
samdark committed Jan 31, 2014
2 parents 0cfd41a + 17c1bcb commit 3bdbb40
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/advanced/environments/dev/yii
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ defined('STDOUT') or define('STDOUT', fopen('php://stdout', 'w'));

require(__DIR__ . '/vendor/autoload.php');
require(__DIR__ . '/vendor/yiisoft/yii2/Yii.php');
require(__DIR__ . '/../../common/config/aliases.php');
require(__DIR__ . '/common/config/aliases.php');

$config = yii\helpers\ArrayHelper::merge(
require(__DIR__ . '/common/config/main.php'),
Expand Down
2 changes: 1 addition & 1 deletion apps/advanced/environments/prod/yii
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ defined('STDOUT') or define('STDOUT', fopen('php://stdout', 'w'));

require(__DIR__ . '/vendor/autoload.php');
require(__DIR__ . '/vendor/yiisoft/yii2/Yii.php');
require(__DIR__ . '/../../common/config/aliases.php');
require(__DIR__ . '/common/config/aliases.php');

$config = yii\helpers\ArrayHelper::merge(
require(__DIR__ . '/common/config/main.php'),
Expand Down

0 comments on commit 3bdbb40

Please sign in to comment.