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
7f9e38a7
Commit
7f9e38a7
authored
Apr 04, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'staging' into develop
parents
8f24d832
10d9cd33
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
23 additions
and
3 deletions
+23
-3
artisan
artisan
+1
-1
cookie.php
laravel/cookie.php
+8
-0
changes.md
laravel/documentation/changes.md
+12
-0
paths.php
paths.php
+1
-1
index.php
public/index.php
+1
-1
No files found.
artisan
View file @
7f9e38a7
...
...
@@ -3,7 +3,7 @@
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @version 3.1.
4
* @version 3.1.
5
* @author Taylor Otwell <taylorotwell@gmail.com>
* @link http://laravel.com
*/
...
...
laravel/cookie.php
View file @
7f9e38a7
...
...
@@ -63,6 +63,14 @@ class Cookie {
}
else
{
// We don't want to send secure cookies over HTTP unless the developer has
// turned off the "SSL" application configuration option, which is used
// while developing the application but should be true in production.
if
(
$secure
and
!
Request
::
secure
()
and
Config
::
get
(
'application.ssl'
))
{
return
;
}
setcookie
(
$name
,
$value
,
$time
,
$path
,
$domain
,
$secure
);
}
}
...
...
laravel/documentation/changes.md
View file @
7f9e38a7
...
...
@@ -4,6 +4,8 @@
-
[
Laravel 3.2
](
#3.2
)
-
[
Upgrading From 3.1
](
#upgrade-3.2
)
-
[
Laravel 3.1.5
](
#3.1.5
)
-
[
Upgrading From 3.1.4
](
#upgrade-3.1.5
)
-
[
Laravel 3.1.4
](
#3.1.4
)
-
[
Upgrading From 3.1.3
](
#upgrade-3.1.4
)
-
[
Laravel 3.1.3
](
#3.1.3
)
...
...
@@ -33,6 +35,16 @@
-
Replace the
**laravel**
folder.
-
Add new
**vendors**
folder.
<a
name=
"3.1.5"
></a>
## Laravel 3.1.5
-
Fixes bug that could allow secure cookies to be sent over HTTP.
<a
name=
"upgrade-3.1.5"
></a>
## Upgrading From 3.1.4
-
Replace the
**laravel**
folder.
<a
name=
"3.1.4"
></a>
## Laravel 3.1.4
...
...
paths.php
View file @
7f9e38a7
...
...
@@ -3,7 +3,7 @@
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @version 3.1.
4
* @version 3.1.
5
* @author Taylor Otwell <taylorotwell@gmail.com>
* @link http://laravel.com
*/
...
...
public/index.php
View file @
7f9e38a7
...
...
@@ -3,7 +3,7 @@
* Laravel - A PHP Framework For Web Artisans
*
* @package Laravel
* @version 3.1.
4
* @version 3.1.
5
* @author Taylor Otwell <taylorotwell@gmail.com>
* @link http://laravel.com
*/
...
...
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