es läuft astrein... nur ich kann irgendwie nicht die farbe von online und offline ändern. ist das deshalb weil ich nicht des gemacht hab.
Code: Alles auswählen
#-----[ SQL ]------------------------------------------
# If you use an alpha release of EasyMOD, this instructions will not be executed!
# Please read author notes to update your database.
# Note: themes_id = '1' can be changed with themes_id = '2' (depend of yours)
#
ALTER TABLE phpbb_themes ADD online_color varchar(6) default NULL;
ALTER TABLE phpbb_themes ADD offline_color varchar(6) default NULL;
ALTER TABLE phpbb_themes ADD hidden_color varchar(6) default NULL;
UPDATE phpbb_themes SET online_color = '008500' WHERE themes_id = '1' LIMIT 1;
UPDATE phpbb_themes SET offline_color = 'DF0000' WHERE themes_id = '1' LIMIT 1;
UPDATE phpbb_themes SET hidden_color = 'EBD400' WHERE themes_id = '1' LIMIT 1;