MyBB.de Forum

Normale Version: 2 Fragen
Du siehst gerade eine vereinfachte Darstellung unserer Inhalte. Normale Ansicht mit richtiger Formatierung.
Seiten: 1 2
Michael schrieb:Das kannst du in der Datei inc/class_sessions.php machen, ziemlich am Anfang. Setze den HTML-Code für die Grafik einfach vor den Namen der Bots.

Hallo zusammen,

wollte das jetzt auch machen, aber da kam nichts Gutes dabei raus. Könnt ihr mir vielleicht helfen, wo genau ich welchen HTML-Code für die Bot-Grafik in der class_session.php setzen muss?

Danke.

Liebe Grüße
San
Es geht um diesen Teil:
PHP-Code:
    var $bots = array(
        
'google' => 'GoogleBot',
        
'lycos' => 'Lycos.com',
        
'ask jeeves' => 'Ask Jeeves',
        
'slurp@inktomi' => 'Hot Bot',
        
'whatuseek' => 'What You Seek',
        
'is_archiver' => 'Archive.org',
        
'scooter' => 'Altavista',
        
'fast-webcrawler' => 'AlltheWeb',
        
'grub.org' => 'Grub Client',
        
'turnitinbot' => 'Turnitin.com',
        
'msnbot' => 'MSN Search',
        
'yahoo' => 'Yahoo! Slurp'
    
); 
Ersetzen durch:
PHP-Code:
    var $bots = array(
        
'google' => '<img src="images/icon.gif" border="0" alt="" /> GoogleBot',
        
'lycos' => '<img src="images/icon.gif" border="0" alt="" /> Lycos.com',
        
'ask jeeves' => '<img src="images/icon.gif" border="0" alt="" /> Ask Jeeves',
        
'slurp@inktomi' => '<img src="images/icon.gif" border="0" alt="" /> Hot Bot',
        
'whatuseek' => '<img src="images/icon.gif" border="0" alt="" /> What You Seek',
        
'is_archiver' => '<img src="images/icon.gif" border="0" alt="" /> Archive.org',
        
'scooter' => '<img src="images/icon.gif" border="0" alt="" /> Altavista',
        
'fast-webcrawler' => '<img src="images/icon.gif" border="0" alt="" /> AlltheWeb',
        
'grub.org' => '<img src="images/icon.gif" border="0" alt="" /> Grub Client',
        
'turnitinbot' => '<img src="images/icon.gif" border="0" alt="" /> Turnitin.com',
        
'msnbot' => '<img src="images/icon.gif" border="0" alt="" /> MSN Search',
        
'yahoo' => '<img src="images/icon.gif" border="0" alt="" /> Yahoo! Slurp'
    
); 
Vielen Dank, jetzt klappt es. Big Grin

Liebe Grüße
San
Seiten: 1 2