Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F823751
D307.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Mon, Mar 10, 2:41 PM
Size
544 B
Mime Type
text/x-diff
Expires
Tue, Mar 11, 2:41 PM (18 h, 18 m)
Engine
blob
Format
Raw Data
Handle
585835
Attached To
D307: INP-1704 - Use strict comparison in "Session::NeedQueryString" method
D307.diff
View Options
Index: branches/5.2.x/core/kernel/session/session.php
===================================================================
--- branches/5.2.x/core/kernel/session/session.php
+++ branches/5.2.x/core/kernel/session/session.php
@@ -702,7 +702,7 @@
function NeedQueryString($use_cache = 1)
{
- if ($this->CachedNeedQueryString != null && $use_cache) {
+ if ( $this->CachedNeedQueryString !== null && $use_cache ) {
return $this->CachedNeedQueryString;
}
@@ -1127,4 +1127,4 @@
return $ret;
}
-}
\ No newline at end of file
+}
Event Timeline
Log In to Comment