|
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. |
22 | 22 | * ********************************************************************* */
|
23 | 23 |
|
24 | 24 | namespace fiftyone\pipeline\core;
|
@@ -111,18 +111,15 @@ public function setFromWebRequest($server = null, $cookies = null, $query = null
|
111 | 111 |
|
112 | 112 | $key = strtolower($key);
|
113 | 113 |
|
114 |
| - error_log("header." . $key . ": " . $value, 0); |
115 | 114 | $evidence["header." . $key] = $value;
|
116 | 115 | }
|
117 | 116 | }
|
118 | 117 |
|
119 | 118 | foreach ($cookies as $key => $value) {
|
120 |
| - error_log("cookie." . $key . ": " . $value, 0); |
121 | 119 | $evidence["cookie." . $key] = $value;
|
122 | 120 | }
|
123 | 121 |
|
124 | 122 | foreach ($query as $key => $value) {
|
125 |
| - error_log("query." . $key . ": " . $value, 0); |
126 | 123 | $evidence["query." . $key] = $value;
|
127 | 124 | }
|
128 | 125 |
|
|
0 commit comments