- new Comment class

- improved performances (much less duplicated mysql queries)
- less code and better error handling
- informs the whole thread when posting new comment
- fix various bugs
This commit is contained in:
Jonathan Ernst
2005-02-02 03:01:29 +00:00
committed by WineHQ
parent 64d8f93b15
commit 03c0c145c5
10 changed files with 510 additions and 457 deletions

View File

@@ -137,13 +137,11 @@ create table appComments (
time datetime,
commentId int not null auto_increment,
parentId int default 0,
appId int not null,
versionId int default 0,
versionId int not null,
userId int,
hostname varchar(80),
subject varchar(128),
body text,
score int,
key(commentId),
index(appId),
index(versionId)