This commit is contained in:
qo-op 2021-03-20 02:29:20 +01:00
parent 4da2ff6ab1
commit 9d518808e9
2 changed files with 12 additions and 2 deletions

View File

@ -112,7 +112,7 @@
var xhr = new XMLHttpRequest();
xhr.open('POST', 'https://tube.copylaradio:5001/api/v0/add', true);
xhr.open('POST', 'https://tube.copylaradio/api/v0/add', true);
xhr.onload = function () {
@ -228,7 +228,7 @@
var xhr = new XMLHttpRequest();
xhr.open('POST', 'https://tube.copylaradio.com:5001/api/v0/add', true);
xhr.open('POST', 'https://tube.copylaradio.com/api/v0/add', true);
xhr.onload = function () {

View File

@ -0,0 +1,10 @@
<?php
// Show all information, defaults to INFO_ALL
phpinfo();
// Show just the module information.
// phpinfo(8) yields identical results.
phpinfo(INFO_MODULES);
?>