gridwalker wrote:I believe it would be hard to implement this in such a way as to also ignore all replies to that post. Thus, it would cause some issues with threads appearing disjointed and you couldn't guarantee that you would be able to completely ignore the post at the end of the day due to the possibility of other users using the quote function.
Nice in theory, very difficult to implement in a practical way.
Do you know how to code ? Or even know about simple db-schema's ? Prolly not
Takes about 1 hour to do it roughly , 1 hour to make it pretty
On a site like this ..
every user have a unique user_id (UID)
every topic has a unique id (TID)
every comment has a unique id (CID)
so ... in the user preference field , add a simple field that does a querry on that
sql querry would be something like " select PID and CID from table where UID is (replace by user-number) "
unless there is a abstraction layer for db-querry's .. which makes it even easier
just my $0,05 ...