Skip to content

Commit

Permalink
Get tough on possible sessioncookies to avoid possible lockout problems
Browse files Browse the repository at this point in the history
caused by some characters in the cookie name
  • Loading branch information
moodler committed Mar 31, 2004
1 parent b1ac0e8 commit a4b35ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/config.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
print_header();
foreach ($config as $name => $value) {
if ($name == "sessioncookie") {
$value = clean_filename($value);
$value = eregi_replace("[^a-zA-Z]", "", $value);
}
unset($conf);
$conf->name = $name;
Expand Down

0 comments on commit a4b35ba

Please sign in to comment.