Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal-3443488
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
drupal-3443488
Commits
01c9f616
Commit
01c9f616
authored
10 years ago
by
David Rothstein
Browse files
Options
Downloads
Patches
Plain Diff
Drupal 6.34
parent
c71b15f6
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
CHANGELOG.txt
+4
-0
4 additions, 0 deletions
CHANGELOG.txt
includes/session.inc
+1
-1
1 addition, 1 deletion
includes/session.inc
modules/system/system.module
+1
-1
1 addition, 1 deletion
modules/system/system.module
with
6 additions
and
2 deletions
CHANGELOG.txt
+
4
−
0
View file @
01c9f616
Drupal 6.34, 2014-11-19
----------------------
- Fixed security issues (session hijacking). See SA-CORE-2014-006.
Drupal 6.33, 2014-08-06
----------------------
- Fixed security issues (denial of service). See SA-CORE-2014-004.
...
...
This diff is collapsed.
Click to expand it.
includes/session.inc
+
1
−
1
View file @
01c9f616
...
...
@@ -41,7 +41,7 @@ function sess_read($key) {
register_shutdown_function
(
'session_write_close'
);
// Handle the case of first time visitors and clients that don't store cookies (eg. web crawlers).
if
(
!
isset
(
$_COOKIE
[
session_name
()]))
{
if
(
empty
(
$key
)
||
!
isset
(
$_COOKIE
[
session_name
()]))
{
$user
=
drupal_anonymous_user
();
return
''
;
}
...
...
This diff is collapsed.
Click to expand it.
modules/system/system.module
+
1
−
1
View file @
01c9f616
...
...
@@ -8,7 +8,7 @@
/**
* The current system version.
*/
define
(
'VERSION'
,
'6.3
3
'
);
define
(
'VERSION'
,
'6.3
4
'
);
/**
* Core API compatibility.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment