D-Mack Media Forums

Full Version: v2.0.2 Released!!
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
We are pleased to announce the release of the latest version of our RecommendFriends Component!! Cool
  • Fixed several issues with the Cc and Bcc email addresses not being set correctly
  • Fixed an issue with multiple emails being incorrectly sent
  • Fixed some email formatting issues if the Custom Message was disabled in Admin
  • Added Spanish Language translation file - Thanks Luis Pumares!
Please feel to download the latest version v2.0.2 from the link below:

Download RecommedFriends v2.0.2

Please see the Change Log for the complete revision history.

Let me know if you run into any other issues!
Some bugs I came across:

- In the source, the default language file is "en_GB.php" instead of "en-GB.php"
- on line 130 of admin.recommendfriends.php:
$mainframe->redirect( 'index2.php?option=$option', 'Configuration file not writable!' );
instead of:
$mainframe->redirect( 'index2.php?option='.$option, 'Configuration file not writable!' );
- I would advise to not put any php variables within the quotes. This is easier for maintanance and you get less mistakes like the above.
So - for instance - do not use:
$componentpath."$tag.php"
but:
$componentpath.$tag.'.php'
Reference URL's