Skip to content

Commit f85e6b2

Browse files
committed
Merge changes from upstream
1 parent 67a53ac commit f85e6b2

File tree

1 file changed

+21
-24
lines changed

1 file changed

+21
-24
lines changed

Evidence.php

Lines changed: 21 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
<?php
2-
/* *********************************************************************
3-
* This Original Work is copyright of 51 Degrees Mobile Experts Limited.
4-
* Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House,
5-
* Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU.
6-
*
7-
* This Original Work is licensed under the European Union Public Licence
8-
* (EUPL) v.1.2 and is subject to its terms as set out below.
9-
*
10-
* If a copy of the EUPL was not distributed with this file, You can obtain
11-
* one at https://opensource.org/licenses/EUPL-1.2.
12-
*
13-
* The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
14-
* amended by the European Commission) shall be deemed incompatible for
15-
* the purposes of the Work and the provisions of the compatibility
16-
* clause in Article 5 of the EUPL shall not apply.
17-
*
18-
* If using the Work as, or as part of, a network application, by
19-
* including the attribution notice(s) required under Article 5 of the EUPL
20-
* in the end user terms of the application under an appropriate heading,
21-
* such notice(s) shall fulfill the requirements of that article.
1+
<?php
2+
/* *********************************************************************
3+
* This Original Work is copyright of 51 Degrees Mobile Experts Limited.
4+
* Copyright 2023 51 Degrees Mobile Experts Limited, Davidson House,
5+
* Forbury Square, Reading, Berkshire, United Kingdom RG1 3EU.
6+
*
7+
* This Original Work is licensed under the European Union Public Licence
8+
* (EUPL) v.1.2 and is subject to its terms as set out below.
9+
*
10+
* If a copy of the EUPL was not distributed with this file, You can obtain
11+
* one at https://opensource.org/licenses/EUPL-1.2.
12+
*
13+
* The 'Compatible Licences' set out in the Appendix to the EUPL (as may be
14+
* amended by the European Commission) shall be deemed incompatible for
15+
* the purposes of the Work and the provisions of the compatibility
16+
* clause in Article 5 of the EUPL shall not apply.
17+
*
18+
* If using the Work as, or as part of, a network application, by
19+
* including the attribution notice(s) required under Article 5 of the EUPL
20+
* in the end user terms of the application under an appropriate heading,
21+
* such notice(s) shall fulfill the requirements of that article.
2222
* ********************************************************************* */
2323

2424
namespace fiftyone\pipeline\core;
@@ -111,18 +111,15 @@ public function setFromWebRequest($server = null, $cookies = null, $query = null
111111

112112
$key = strtolower($key);
113113

114-
error_log("header." . $key . ": " . $value, 0);
115114
$evidence["header." . $key] = $value;
116115
}
117116
}
118117

119118
foreach ($cookies as $key => $value) {
120-
error_log("cookie." . $key . ": " . $value, 0);
121119
$evidence["cookie." . $key] = $value;
122120
}
123121

124122
foreach ($query as $key => $value) {
125-
error_log("query." . $key . ": " . $value, 0);
126123
$evidence["query." . $key] = $value;
127124
}
128125

0 commit comments

Comments
 (0)