Nested quotes depth restriction.
This should (I hope) not be all that difficult to code.
By default you can have no nested quotes (ie: top level quotes only) or you can have unrestricted nested quotes (ie: ZOMFG why do muppets just keep hitting the quote button?
)
The best solution, IMO, would be to have the option of two or thee levels of quotes. That allows for better discussions sometimes, while still keeping muppets under control. This is easy to do in CSS:
.bbc_standard_quote .bbc_standard_quote>.quoteheader,
.bbc_standard_quote .bbc_standard_quote>.bbc_alternate_quote {
display: none;
}
Only catch is that doesn't deal with the database, so all the crud you don't want still comes up in the editor. But if it's this easy to do with CSS, then logically it would be possible with PHP in Sources too, which would solve all the problems nicely. The back end code can already strip out all quotes below the first level, so presumably that can be altered to strip out only levels 3+ or 4+ or whatever.
So, since this is a really clever idea, how do you code it?