In the body e-mail message it always shows 1st the site name, 2nd username and 3rd the link when using the %s symbols, how to change this order?
- Date added:
- Saturday, 06 June 2009
- Last revised:
- Sunday, 07 June 2009
Answer
It is defined in the controler.php file at yoursite/components/com_alphauserpoints. If you check the line 511 (version 1.4.0) you will find the order it is defined at: $body = sprintf( $msg, $SiteName, $sender, $link) . " \n" . $custommessage; So, you if you want to show for example the sender in first place, the site name as secondĀ and the link as thrid, just chage the sequence for it like that: $msg, $sender, $SiteName, $link




