From 9e6a1a58471da14428af925d0c086eba38499e5a Mon Sep 17 00:00:00 2001 From: Carsten Brandt Date: Mon, 20 May 2013 22:43:43 +0200 Subject: [PATCH] Changed Yii.php case in some files where it was wrong --- apps/bootstrap/www/index.php | 2 +- apps/bootstrap/yii | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/bootstrap/www/index.php b/apps/bootstrap/www/index.php index 7938c85..0875881 100644 --- a/apps/bootstrap/www/index.php +++ b/apps/bootstrap/www/index.php @@ -3,7 +3,7 @@ // comment out the following line to disable debug mode defined('YII_DEBUG') or define('YII_DEBUG', true); -require(__DIR__ . '/../vendor/yiisoft/yii2/yii.php'); +require(__DIR__ . '/../vendor/yiisoft/yii2/Yii.php'); require(__DIR__ . '/../vendor/autoload.php'); $config = require(__DIR__ . '/../config/main.php'); diff --git a/apps/bootstrap/yii b/apps/bootstrap/yii index fa8db10..e35ae3a 100755 --- a/apps/bootstrap/yii +++ b/apps/bootstrap/yii @@ -13,7 +13,7 @@ defined('YII_DEBUG') or define('YII_DEBUG', true); // fcgi doesn't have STDIN defined by default defined('STDIN') or define('STDIN', fopen('php://stdin', 'r')); -require(__DIR__ . '/vendor/yiisoft/yii2/yii.php'); +require(__DIR__ . '/vendor/yiisoft/yii2/Yii.php'); require(__DIR__ . '/vendor/autoload.php'); $config = require(__DIR__ . '/config/console.php');