Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
01a7991b
Commit
01a7991b
authored
Apr 04, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix artisan.
parent
4bee6d1b
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
48 additions
and
37 deletions
+48
-37
artisan.php
laravel/cli/artisan.php
+11
-0
core.php
laravel/core.php
+37
-1
laravel.php
laravel/laravel.php
+0
-36
No files found.
laravel/cli/artisan.php
View file @
01a7991b
...
...
@@ -2,6 +2,7 @@
use
Laravel\Bundle
;
use
Laravel\Config
;
use
Laravel\Request
;
/**
* Fire up the default bundle. This will ensure any dependencies that
...
...
@@ -20,6 +21,16 @@ if (isset($_SERVER['CLI']['DB']))
Config
::
set
(
'database.default'
,
$_SERVER
[
'CLI'
][
'DB'
]);
}
/**
* Overwrite the HttpFoundation request since we have set some of
* the server variables since it was created. This allows us to
* set the default database for the CLI task.
*/
use
Symfony\Component\HttpFoundation\LaravelRequest
as
RequestFoundation
;
Request
::
$foundation
=
RequestFoundation
::
createFromGlobals
();
/**
* We will register all of the Laravel provided tasks inside the IoC
* container so they can be resolved by the task class. This allows
...
...
laravel/core.php
View file @
01a7991b
...
...
@@ -161,4 +161,40 @@ $bundles = require path('app').'bundles'.EXT;
foreach
(
$bundles
as
$bundle
=>
$config
)
{
Bundle
::
register
(
$bundle
,
$config
);
}
\ No newline at end of file
}
/*
|--------------------------------------------------------------------------
| Magic Quotes Strip Slashes
|--------------------------------------------------------------------------
|
| Even though "Magic Quotes" are deprecated in PHP 5.3.x, they may still
| be enabled on the server. To account for this, we will strip slashes
| on all input arrays if magic quotes are enabled for the server.
|
*/
if
(
magic_quotes
())
{
$magics
=
array
(
&
$_GET
,
&
$_POST
,
&
$_COOKIE
,
&
$_REQUEST
);
foreach
(
$magics
as
&
$magic
)
{
$magic
=
array_strip_slashes
(
$magic
);
}
}
/*
|--------------------------------------------------------------------------
| Create The HttpFoundation Request
|--------------------------------------------------------------------------
|
| Laravel uses the HttpFoundation Symfony component to handle the request
| and response functionality for the framework. This allows us to not
| worry about that boilerplate code and focus on what matters.
|
*/
use
Symfony\Component\HttpFoundation\LaravelRequest
as
RequestFoundation
;
Request
::
$foundation
=
RequestFoundation
::
createFromGlobals
();
\ No newline at end of file
laravel/laravel.php
View file @
01a7991b
...
...
@@ -55,42 +55,6 @@ register_shutdown_function(function()
error_reporting
(
-
1
);
/*
|--------------------------------------------------------------------------
| Magic Quotes Strip Slashes
|--------------------------------------------------------------------------
|
| Even though "Magic Quotes" are deprecated in PHP 5.3.x, they may still
| be enabled on the server. To account for this, we will strip slashes
| on all input arrays if magic quotes are enabled for the server.
|
*/
if
(
magic_quotes
())
{
$magics
=
array
(
&
$_GET
,
&
$_POST
,
&
$_COOKIE
,
&
$_REQUEST
);
foreach
(
$magics
as
&
$magic
)
{
$magic
=
array_strip_slashes
(
$magic
);
}
}
/*
|--------------------------------------------------------------------------
| Create The HttpFoundation Request
|--------------------------------------------------------------------------
|
| Laravel uses the HttpFoundation Symfony component to handle the request
| and response functionality for the framework. This allows us to not
| worry about that boilerplate code and focus on what matters.
|
*/
use
Symfony\Component\HttpFoundation\LaravelRequest
as
RequestFoundation
;
Request
::
$foundation
=
RequestFoundation
::
createFromGlobals
();
/*
|--------------------------------------------------------------------------
| Start The Application Bundle
...
...
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