Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2016-07-22 13:12:21 +0300
committerMichal Čihař <michal@cihar.com>2016-07-22 13:12:21 +0300
commit7641e3f3b14c1e958a447efb99bc32c1a6749d54 (patch)
treec7890c6236468b49f9e3c7dd1134d3e7d3545c2f /url.php
parent377ab3bddf942c179208d9dfbf75e6a8a9878f17 (diff)
parent1d70a1ba64f4bace7a15aa3f153abc81fde4881c (diff)
Merge branch 'QA_4_6'
Diffstat (limited to 'url.php')
-rw-r--r--url.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/url.php b/url.php
index bd5be9e392..76fc37600a 100644
--- a/url.php
+++ b/url.php
@@ -14,7 +14,7 @@ define('PMA_MINIMUM_COMMON', true);
require_once './libraries/common.inc.php';
if (! PMA_isValid($_REQUEST['url'])
- || ! preg_match('/^https?:\/\/[^\n\r]*$/', $_REQUEST['url'])
+ || ! preg_match('/^https:\/\/[^\n\r]*$/', $_REQUEST['url'])
|| ! PMA_isAllowedDomain($_REQUEST['url'])
) {
PMA_sendHeaderLocation('./');