Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
6810b99d
Commit
6810b99d
authored
Nov 01, 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
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
laravel/autoloader.php
+2
-2
laravel/cookie.php
+2
-1
No files found.
laravel/autoloader.php
View file @
6810b99d
...
@@ -19,8 +19,8 @@ class Autoloader {
...
@@ -19,8 +19,8 @@ class Autoloader {
/**
/**
* Load the file corresponding to a given class.
* Load the file corresponding to a given class.
*
*
* Laravel loads classes out of three director
y
s: the core "laravel" directory,
* Laravel loads classes out of three director
ie
s: the core "laravel" directory,
* and the application "models" and "libra
ir
es" directories. All of the file
* and the application "models" and "libra
ri
es" directories. All of the file
* names are lower cased and the directory structure corresponds with the
* names are lower cased and the directory structure corresponds with the
* class namespaces.
* class namespaces.
*
*
...
...
laravel/cookie.php
View file @
6810b99d
...
@@ -125,7 +125,7 @@ class Cookie {
...
@@ -125,7 +125,7 @@ class Cookie {
*/
*/
public
static
function
forget
(
$name
)
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