• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Guilds (default svn injection). Problem

Znote

<?php echo $title; ?>
Staff member
Global Moderator
Premium User
Joined
Feb 14, 2008
Messages
7,030
Solutions
256
Reaction score
2,124
Location
Norway
GitHub
Znote
Here is sample:
2hx0rjr.png


The rev is 203.

Temporarily solution is just to remove
PHP:
echo "<center><font color='red'>There is no guilds yet.</font></center>";
 
Last edited:
The solution for this problem is in your eyes, just look better to the script:
PHP:
if(empty($guild['name'])) continue;
                $is = 1;

look the variable here is $is.

and here
PHP:
if(empty($id)) {
                echo "<center><font color='red'>There is no guilds yet.</font></center>";
        }
the variablie is $id, just change this variable name to $is

bye
 
Back
Top