We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3062503 commit 850f121Copy full SHA for 850f121
public_html/lists/index.php
@@ -52,6 +52,11 @@
52
require_once dirname(__FILE__).'/admin/connect.php';
53
include_once dirname(__FILE__).'/admin/lib.php';
54
55
+if ($_SERVER['REQUEST_METHOD'] == 'HEAD') {
56
+ print s('Not implemented');
57
+ return;
58
+}
59
+
60
$I18N = new phplist_I18N();
61
header('Access-Control-Allow-Origin: '.ACCESS_CONTROL_ALLOW_ORIGIN);
62
if (defined('ACCESS_CONTROL_ALLOW_ORIGINS') && count(ACCESS_CONTROL_ALLOW_ORIGINS) > 1) {
0 commit comments