Kunena 6.3.7 Released
The Kunena team has announce the arrival of Kunena 6.3.7 [K 6.3.7] in stable which is now available for download as a native Joomla extension for J! 4.4.x/5.0.x/5.1.x/5.2.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 and issues discovered during the last development stages of K 6.3
Note: Please go to the Kunena Dashboard after an upgrade so that the Kunena database tables are also updated.
Solved Sending emails when someone quotes on a post
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
- perryworld
- Topic Author
- Offline
- Senior Member
- Posts: 126
- Thank you received: 3
Thanks for the reply.
We did eventually find it after looking in Kunena Admin and the Front End code we decided to download the whole site and using NotePad++ we searched and found it where you have said to look.
Your support is really appreciated.
Thanks
Rich
Please Log in or Create an account to join the conversation.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
- perryworld
- Topic Author
- Offline
- Senior Member
- Posts: 126
- Thank you received: 3
My apologies, after taking so long to find it I then had to get the hack in place as it had become quiet urgent.
Sorry about that.
Rich
Please Log in or Create an account to join the conversation.
Blue Eagle vs. Crypsis reference guide
Read my blog and
Please Log in or Create an account to join the conversation.
- perryworld
- Topic Author
- Offline
- Senior Member
- Posts: 126
- Thank you received: 3
This was a quick and nasty hack but basically we accessed the message and checked for the following text
$findquote = strpos($this->message, "[quote");
if it did we just extracted the user name from the message then got their email address from the database and sent a custom email.
$finduser = substr($this->message, ;
$finduser = str_replace('"',"~",$finduser);
$findend = strpos($finduser, "~");
$user = substr($finduser, 0, $findend);
// access user object to get users email address
$userobj = JFactory::getUser($user);
$useremail = $userobj->email;
Cheers
Rich
Please Log in or Create an account to join the conversation.