These requests for comments/change have lead to an implemented feature that has been successfully merged into the 3.2/Rhea branch. Everything listed in this forum will be available in phpBB 3.2.
Nicofuma wrote: Tue Jul 07, 2015 7:49 am
Merged and deployed as it on area51.
Would you mind purging the template cache? Quoting from the topic review doesn't have the new attributes.
AmigoJack wrote:Interfering with make_clickable():
Quick correction: make_clickable() isn't used anymore. It's all in the BBCode definition. If the name used for the quote starts with "http://" it's used as a URL if there was none specified.
AmigoJack wrote:Using different whitespaces:
I've just added support in the library for more whitespace between attributes to allow newlines and tabs. That seems to make sense.
kinerity wrote: Sat Jul 11, 2015 8:49 pm
I'm late to the party Just a thought, is it possible to grab the color of the quoted author also?
Colors can change. Not sure that is such a good idea to forever immortalize a user's current color/team designation in a quote, although it's not that big of a deal.
BTW I've noticed that quoting someone now adds two new lines after the closing quote tag. Is this on purpose? Also has anyone checked what happens when you quote an anonymous user or when the quoted user no longer exists (account deleted)?
DavidIQ wrote: Mon Jul 13, 2015 10:39 am
Also has anyone checked what happens when you quote an anonymous user or when the quoted user no longer exists (account deleted)?
Anonymous user: it uses the guest name like in phpBB 3.1, and it links to an inexistent profile. The latter part is fixed by https://github.com/phpbb/phpbb/pull/3758
I haven't checked the other case but I think that posts are reassigned to the anonymous user when a user is deleted.
JoshyPHP wrote: Mon Jul 13, 2015 12:37 pmposts are reassigned to the anonymous user when a user is deleted
Partially: per post poster_id is set to ANONYMOUS, but post_username is filled to still distinguish between multiple deleted accounts. The username can live on without an account.
DavidIQ wrote: Mon Jul 13, 2015 10:39 amColors can change.
I wasn't implying storing it in the posts table. We already do calls to the users table (and if I remember correctly, the entire users table) for viewtopic. Would it not be possible to match the quoted user_id to the appropriate user_colour? Just food for thought.
kinerity wrote: Tue Jul 14, 2015 12:51 amI wasn't implying storing it in the posts table. We already do calls to the users table (and if I remember correctly, the entire users table) for viewtopic. Would it not be possible to match the quoted user_id to the appropriate user_colour? Just food for thought.
Ah ok. That makes more sense. But what would/should happen when the quote is not from the current topic?
DavidIQ wrote: Tue Jul 14, 2015 1:24 amnot from the current topic
Or not from the current page? What about search results? And signatures? And forum descriptions? Yes, quotes are not really expected, but not forbidden either.