I might see if I can get things working using user_id while I have some time over Easter. Your old Advanced Quoting MOD (posted in STG) stored user_id, if I remember rightly? I might take a look and see if I'm able to 'merge' some of your code from that MOD into functions_qubl.phpErik Frèrejean wrote:1) No it doesn't store the user_id but just takes the user name. In the future I might change this to keep the usernames working when it gets changed but that will require a lot more edits.
That is correct, but storing the id caused some problems which you have to keep in mind (deleted users, non-existing users).hww wrote:I might see if I can get things working using user_id while I have some time over Easter. Your old Advanced Quoting MOD (posted in STG) stored user_id, if I remember rightly? I might take a look and see if I'm able to 'merge' some of your code from that MOD into functions_qubl.phpErik Frèrejean wrote:1) No it doesn't store the user_id but just takes the user name. In the future I might change this to keep the usernames working when it gets changed but that will require a lot more edits.
ThnxPinoyEngine™ wrote:hello Erik! I just want to say to you just coded a very cool MOD!
I'm not entirely sure what you mean? (I currently don't have a local installation to check this).PinoyEngine™ wrote:Anyway, I just want to ask something,
Let's say I will use the quote without quoting from others, the preview will give "Guess wrote", what if I want to remove that if I'm not quoting other's post.
Because, sometimes other users use the Quote function to design their post.
Thank you very much to your reply. GodBless.
Code: Select all
[quote="THE POSTER"][/quote]
Ah yeah, that is pretty dirty. This should fix it, I haven't tested this in detail but I don't expect problems here.PinoyEngine™ wrote:ooops. Sorry, I need a grammer here.
Ok here is what I mean: (let's see what my lil paint can do )
At situation No.1 , Here is what will happen if we will quote someone's post.
e.g.At situation No.2, this is what will happen if we will only use quote without the poster tag. The Poster name will be replaced by guess.Code: Select all
[quote="THE POSTER"][/quote]
What I want is to remove the Guess wrote: text. Because sometimes, other users of my forum is using the quote tag for making their post more attractive.
Code: Select all
$username_clean = utf8_clean_string($username);
Code: Select all
// Return when the username is empty.
if (empty($username_clean))
{
return;
}
This is due to a change I missed when creating the install file for my other MOD. The fix for this is posted in the development topic of my Quote Post Back Link MOD.evina wrote:This mod is great but I seem to be having a problem.
Every new quote looks like this:
[Username of the person]& Qpbl Wrote In: [name of thread]:
The [Username of the person] and the [name of the thread] for the quote are correct but why does it say "& Qpbl" ?
I am very glad that I somehow become a part of this.Erik Frèrejean wrote:Glad to hear that, I've just submitted a new release that fixes this problem.
Code: Select all
}