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
6810b99d
Commit
6810b99d
authored
Nov 02, 2011
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change cookie forget time to be 25 hours in the past to cover strange timezone issues.
parent
83d927c4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
autoloader.php
laravel/autoloader.php
+2
-2
cookie.php
laravel/cookie.php
+1
-1
No files found.
laravel/autoloader.php
View file @
6810b99d
...
...
@@ -19,8 +19,8 @@ class Autoloader {
/**
* Load the file corresponding to a given class.
*
* Laravel loads classes out of three director
y
s: the core "laravel" directory,
* and the application "models" and "libra
ir
es" directories. All of the file
* Laravel loads classes out of three director
ie
s: the core "laravel" directory,
* and the application "models" and "libra
ri
es" directories. All of the file
* names are lower cased and the directory structure corresponds with the
* class namespaces.
*
...
...
laravel/cookie.php
View file @
6810b99d
...
...
@@ -125,7 +125,7 @@ class Cookie {
*/
public
static
function
forget
(
$name
)
{
return
static
::
put
(
$name
,
null
,
-
6
0
);
return
static
::
put
(
$name
,
null
,
-
150
0
);
}
}
\ No newline at end of file
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