Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93

Warning: Undefined array key "page_file_edit_line" in /home/sportsfever/public_html/filemanger/edit_text_line.php on line 32
/home/sportsfe.../httpdocs/wp-inclu.../Requests/src
File: Cookie.php
[500] Fix | Delete
// Default path normalization as per RFC 6265 section 5.1.4
[501] Fix | Delete
if (substr($path, 0, 1) !== '/') {
[502] Fix | Delete
// If the uri-path is empty or if the first character of
[503] Fix | Delete
// the uri-path is not a %x2F ("/") character, output
[504] Fix | Delete
// %x2F ("/") and skip the remaining steps.
[505] Fix | Delete
$path = '/';
[506] Fix | Delete
} elseif (substr_count($path, '/') === 1) {
[507] Fix | Delete
// If the uri-path contains no more than one %x2F ("/")
[508] Fix | Delete
// character, output %x2F ("/") and skip the remaining
[509] Fix | Delete
// step.
[510] Fix | Delete
$path = '/';
[511] Fix | Delete
} else {
[512] Fix | Delete
// Output the characters of the uri-path from the first
[513] Fix | Delete
// character up to, but not including, the right-most
[514] Fix | Delete
// %x2F ("/").
[515] Fix | Delete
$path = substr($path, 0, strrpos($path, '/'));
[516] Fix | Delete
}
[517] Fix | Delete
[518] Fix | Delete
$parsed->attributes['path'] = $path;
[519] Fix | Delete
}
[520] Fix | Delete
[521] Fix | Delete
// Reject invalid cookie domains
[522] Fix | Delete
if (!empty($origin) && !$parsed->domain_matches($origin->host)) {
[523] Fix | Delete
continue;
[524] Fix | Delete
}
[525] Fix | Delete
[526] Fix | Delete
$cookies[$parsed->name] = $parsed;
[527] Fix | Delete
}
[528] Fix | Delete
[529] Fix | Delete
return $cookies;
[530] Fix | Delete
}
[531] Fix | Delete
}
[532] Fix | Delete
[533] Fix | Delete
12
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function