ThWboard Support-Forum (Archiv)

Ort: / Boardübersicht / Announcements / ThWboard Beta 2.4


Seite 1 von 1

dp schrieb am 28.07.2001 um 18:30 Uhr

Changelog
* Neues Rechtesystem (Kein ewiges Klicken mehr im Admincenter)
* Echte Moderatoren
* Staff Liste (Userlevel > "Regular")
* Passwort Generierung überarbeitet
* Posteditierung: Limit setzbar
* URL Handling gefixt (Kein '[' und ']' mehr in häufig verwendeten URLs), dadurch keine Fehler mehr bei ICQ, Outlook ...

Achtung: Nach dem Update sind alle geschützen Boards öffentlich und alle Boards mit eingeschränktem Zugriff (z.B. Keine neuen Threads erstellbar) ganz normale Boards. Deswegen sollte das Forum während dem Update geschlossen werden.

Es sollten alle Files überschrieben werden und folgende SQL Queries ausgeführt werden:

DROP TABLE thwb_group;
DROP TABLE thwb_permission;
ALTER TABLE thwb_user DROP usergroups;
ALTER TABLE thwb_user CHANGE userisadmin userlevel TINYINT (1) UNSIGNED DEFAULT '0' not null;
ALTER TABLE thwb_board ADD boardisprivate TINYINT (1) UNSIGNED not null;
ALTER TABLE thwb_board ADD boardcanpostnew TINYINT (1) UNSIGNED not null;
ALTER TABLE thwb_board ADD boardcanreply TINYINT (1) UNSIGNED not null;
ALTER TABLE thwb_pm ADD pmfolder TINYINT (1) UNSIGNED not null;
UPDATE thwb_board SET boardcanpostnew=1;
UPDATE thwb_board SET boardcanreply=1;
CREATE TABLE thwb_moderator (
   boardid tinyint(1) unsigned DEFAULT '0' NOT NULL,
   userid tinyint(1) unsigned DEFAULT '0' NOT NULL,
   modcanpanel tinyint(1) unsigned DEFAULT '0' NOT NULL
);
CREATE TABLE thwb_boardaccess (
   boardid tinyint(1) unsigned DEFAULT '0' NOT NULL,
   userid tinyint(1) unsigned DEFAULT '0' NOT NULL
);

Seite 1 von 1