MyBB.de Forum
Index Birthdays nur für registrierte User - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Archiv (https://www.mybb.de/forum/forum-57.html)
+--- Forum: MyBB 1.2.x und älter (https://www.mybb.de/forum/forum-27.html)
+---- Forum: Allgemeiner Support (https://www.mybb.de/forum/forum-36.html)
+---- Thema: Index Birthdays nur für registrierte User (/thread-10053.html)



Index Birthdays nur für registrierte User - Laello - 28.07.2008

Wo kann ich das einstellen,
das es nur für registrierte User ist,
und nicht für Gäste sichtbar? Huh


RE: Index Birthdays nur für registrierte User - linwinman - 28.07.2008

Hallo Laello,

öffne hierzu die Datei ".../index.php" und ersetze
PHP-Code:
    {
        eval(
"\$birthdays = \"".$templates->get("index_birthdays")."\";");
    } 
durch
PHP-Code:
    {
        if(
$mybb->user['uid'] != '0'
        {
            eval(
"\$birthdays = \"".$templates->get("index_birthdays")."\";");
        }
    } 



RE: Index Birthdays nur für registrierte User - Laello - 28.07.2008

Dank Dir Linwinman Big Grin