Update to latest version

This commit is contained in:
genuineparts 2025-06-24 23:26:25 +02:00
parent 8a89842ec6
commit fe9ecfad73
77 changed files with 1701 additions and 5404 deletions

View file

@ -62,7 +62,7 @@ function get_user_list() {
$ch = curl_init();
// setze die URL und andere Optionen
curl_setopt($ch, CURLOPT_URL, "https://chatsrv.austriachat.net/info");
curl_setopt($ch, CURLOPT_URL, "https://chat.funch.at/info");
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
@ -103,7 +103,6 @@ function get_user_list() {
}
function chat_online(){
$online=get_user_list();
if($online){
$rooms=array_keys($online);
$i=0;
@ -124,7 +123,7 @@ function chat_online(){
}
$data["usercount"]++;
$data[$i]["users"].='<a href="https://austriachat.net/my/'.$user.'" target="_blank"><span style="color:#'.$online[$room]["u"][$user].'">'.$user.'</span></a>';
$data[$i]["users"].='<a href="https://funch.at/my/'.$user.'" target="_blank"><span style="color:#'.$online[$room]["u"][$user].'">'.$user.'</span></a>';
}
$i++;