big consolidation

This commit is contained in:
2022-09-27 00:51:15 -05:00
parent 4d61ad26bd
commit 50f2f1c644
509 changed files with 36567 additions and 7542 deletions

View File

@@ -0,0 +1,15 @@
<?php
header('Content-Type: text/xml; charset: utf-'.'8');
if (!isset($_GET['feed'])) {
exit;
}
if (strpos($_GET['feed'], 'http://') !== 0) {
exit;
}
echo file_get_contents($_GET['feed']);
?>