mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-25 16:19:00 +01:00
fix missing url-encoding of from parameter (' 49...' instead of '+49...')
This commit is contained in:
parent
eecad5f70f
commit
7c2a3bfe71
@ -70,6 +70,12 @@ if ($_SERVER['REQUEST_METHOD'] === 'GET')
|
|||||||
die("Missing 'from' GET parameter\n");
|
die("Missing 'from' GET parameter\n");
|
||||||
}
|
}
|
||||||
$from = $_GET['from'];
|
$from = $_GET['from'];
|
||||||
|
|
||||||
|
// fix missing url-encoding of +49...
|
||||||
|
if (preg_match('/^ [\d]+/', $from))
|
||||||
|
{
|
||||||
|
$from[0] = '+';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user