Skip to content

Commit

Permalink
Fixes yiisoft#554. Incorrect alias setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
resurtm committed Jun 19, 2013
1 parent d182ce1 commit 729446e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions apps/advanced/common/config/params.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
<?php
Yii::setAlias('common', '../');
Yii::setAlias('frontend', '../../frontend');
Yii::setAlias('backend', '../../frontend');

Yii::setAlias('common', __DIR__ . '/../');
Yii::setAlias('frontend', __DIR__ . '/../../frontend');
Yii::setAlias('backend', __DIR__ . '/../../backend');

return array(
'adminEmail' => '[email protected]',

Expand All @@ -15,4 +17,4 @@
'username' => 'root',
'password' => '',
),
);
);

0 comments on commit 729446e

Please sign in to comment.