Hello!
Please edit:
- [Joomla dir]/administrator/components/com_hotornot/models/image.php and change lines:
379 from
$subject = str_ireplace($search, $replace, $subject);
to
$subject = str_replace($search, $replace, $subject);
and 380 from
$message = str_ireplace($search, $replace, $message);
to
$message = str_replace($search, $replace, $message);
- [Joomla dir]/components/com_hotornot/models/comment.php and change lines:
114 from
$subject = str_ireplace($search, $replace, $subject);
to
$subject = str_replace($search, $replace, $subject);
and 115 from
$message = str_ireplace($search, $replace, $message);
to
$message = str_replace($search, $replace, $message);
Just make sure that the notification messages and subjects contain the replacement tags exactly as written in the legend box (don't change the letter case).