Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Rotua Panjaitan
yii2
Commits
07444138
Commit
07444138
authored
May 21, 2013
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed iii include path.
parent
f7210516
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
build
build/build
+1
-1
bootstrap.php
tests/unit/bootstrap.php
+1
-1
index.php
tests/web/app/index.php
+1
-1
No files found.
build/build
View file @
07444138
...
...
@@ -11,7 +11,7 @@
// fcgi doesn't have STDIN defined by default
defined
(
'STDIN'
)
or
define
(
'STDIN'
,
fopen
(
'php://stdin'
,
'r'
));
require
(
__DIR__
.
'/../yii/Yii.php'
);
require
(
__DIR__
.
'/../
framework/
yii/Yii.php'
);
$id
=
'yii-build'
;
$basePath
=
__DIR__
;
...
...
tests/unit/bootstrap.php
View file @
07444138
...
...
@@ -5,7 +5,7 @@ define('YII_DEBUG', true);
$_SERVER
[
'SCRIPT_NAME'
]
=
'/'
.
__DIR__
;
$_SERVER
[
'SCRIPT_FILENAME'
]
=
__FILE__
;
require_once
(
__DIR__
.
'/../../yii/Yii.php'
);
require_once
(
__DIR__
.
'/../../
framework/
yii/Yii.php'
);
Yii
::
setAlias
(
'@yiiunit'
,
__DIR__
);
...
...
tests/web/app/index.php
View file @
07444138
<?php
require
(
__DIR__
.
'/../../../yii/Yii.php'
);
require
(
__DIR__
.
'/../../../
framework/
yii/Yii.php'
);
$application
=
new
yii\web\Application
(
'test'
,
__DIR__
.
'/protected'
);
$application
->
run
();
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment