Well it seems that pretty much all my users really hate the dropping of B_ParentUser info.. They aren't used to using the quote feature so it makes it confusing as to who is replying to who.<br /><br />What does everyone else think of this?
Registered: 04/23/02
Posts: 1929
Loc: Virginia, USA
I'm not sure that it's a big deal. When I post, if there's any ambiguity in whom I'm replying to, I'll mention that person by name in the post.<br /><br />Automatically indicating the repliee (is that a word?) can even be misleading, if the replier used flat view and used the last reply link in the thread, rather than the reply link of the appropriate post.
_________________________
UBB.threads beta tester / threadsdev.com moderator Software consulting services including UBB.threads problem resolution / installs / upgrades / customization.
With the amount of posts we get per thread/day. It can really get confusing sometimes. I guess I could put it back in myself, but I would really like to see this be an available feature. <br /><br />I also think that anytime a feature is removed from the software that it should mention this somewhere in the upgrade documentation or something. I guess I could have looked at the altertable script first but I never really thought a major feature like this would be taken out.<br /><br />*sigh* <img src="/forum/images/graemlins/crazy.gif" alt="" /> <img src="/forum/images/graemlins/frown.gif" alt="" /> <img src="/forum/images/graemlins/confused.gif" alt="" />
#231220 - 12/31/0201:26 AMRe: Dropping of B_ParentUser
[Re: AleksejVL]
JoshPet
I type Like navaho
Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
I did write a mod to put it back (under beta mods)<br /><br />Warning....this adds 1 or 2 queries (depending on the option you choose) per post. (that's post). <br /><br />So if your site is too busy (your site is huge) it might not be able to handle it. Use with caution. But wanted to let you know it's there if you want to give it a try.<br /><br />The loss of that feature was a result of the conversion to Usernumber.
#231221 - 12/31/0210:21 AMRe: Dropping of B_ParentUser
[Re: Daine]
Gardener
Addict
Registered: 05/11/99
Posts: 1956
Loc: Sweden, Uppsala
I haven't seen any 6.2 code so I'm just guessing here, but wouldn't it be possible to do one separate query after all posts have been read to get the names of all parentusers found and insert them into the post array?
I have done this on other things to avoid a join so I'm sure it's completely possible. A query would need to be formatted with all the user numbers and then cycle through and place them into the array. This will still affect the speed slightly but there should only be one query needed.
#231223 - 12/31/0205:24 PMRe: Dropping of B_ParentUser
[Re: sjsaunders]
Storm_dup1
Member
Registered: 08/03/02
Posts: 263
Loc: Somewhere above Texas
I agree and I've had a few complaints about this same thing. When you go to read a post that's 50+ posts back you haven't a clue who you're responding to after reading through so many.... <img src="/forum/images/graemlins/laugh.gif" alt="" />
_________________________
Some people read their stars..... I choose to write my own
#231224 - 01/01/0302:46 AMRe: Dropping of B_ParentUser
[Re: ]
JoshPet
I type Like navaho
Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Yeah, My mod which adds this back in works.. but it might not be the best way. It does a query first to see the usernumber of the poster of the parent post. This step can then offer a link to the profile. or you can go one step further and then look up the username.<br /><br />But I bet JustDave's way is better. <img src="/forum/images/graemlins/smile.gif" alt="" />
Actually I ended up having to use two queries and 3 loops. The speed impact is minimal but I think the trade off is worth it.<br /><br />It's not that hard of a hack. I'll post the code yet today.<br /><br /><br />In stead of going back to the old way of placing the link around the name of the person your replying to I just put the "by JoePoster" after the subject of the reply but now thinking about that that isn't quite right since the poster can change the subject of their reply... lol<br /><br />Guess I'll have to work on that.
#231226 - 01/01/0306:08 PMRe: Dropping of B_ParentUser
[Re: sjsaunders]
JoshPet
I type Like navaho
Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Did you look at mine. I'd be curious as to "how I did". <img src="/forum/images/graemlins/laugh.gif" alt="" /> Is my version slower?<br /><br />I use 2 queries (per post). Or is yours just 2 queries total??
#231228 - 01/01/0306:48 PMRe: Dropping of B_ParentUser
[Re: sjsaunders]
JoshPet
I type Like navaho
Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
cool! You da man!<br /><br />If The usernumber of who you were replying to was stored, then I bet it would only be one! <img src="/forum/images/graemlins/smile.gif" alt="" />
Registered: 04/23/02
Posts: 1929
Loc: Virginia, USA
The only problem with this is that some people (like navaho) don't bother using the correct reply link, but always use the one in the last post, so the username shown won't necessarily be meaningful.
_________________________
UBB.threads beta tester / threadsdev.com moderator Software consulting services including UBB.threads problem resolution / installs / upgrades / customization.
#231232 - 01/01/0309:47 PMRe: Dropping of B_ParentUser
[Re: sjsaunders]
JoshPet
I type Like navaho
Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Yeah me too. But it's worse if they don't see "Re: Username" to begin with.<br /><br />If they are seeing "Re: Username" then they are more likely to choose to reply to the correct person.<br /><br />The quick reply is a bit of a culprit too. If they just fill in the form then they reply to the last post. But if they use the javascript, then it works right. <img src="/forum/images/graemlins/wink.gif" alt="" />
I can't find the post in beta mods...but I assume the extra queries are because you have to resolve the U_Number into U_Username, so the username is visible. I think you could add a column to the posts table which keeps a record of who you're replying to, that way you can pick it up in the query to get the post, and you can drop it in the query to add the post. It wouldn't work with older posts, but you could also resolve the u_number to u_username IF the new column is blank. It would cut down on extra queries for new posts, but still be backwards compatable.