diff --git a/inc/plugins/thankyoulike.php b/inc/plugins/thankyoulike.php index 1d1a7ca..848b2f4 100644 --- a/inc/plugins/thankyoulike.php +++ b/inc/plugins/thankyoulike.php @@ -979,7 +979,7 @@ function tyl_recordAlertThankyou() array( 'tid' => $tid, 'pid' => $pid, - 't_subject' => $db->escape_string($subject), + 't_subject' => $subject, 'fid' => $fid )); MybbStuff_MyAlerts_AlertManager::getInstance()->addAlert($alert); @@ -1002,7 +1002,7 @@ public function formatAlert(MybbStuff_MyAlerts_Entity_Alert $alert, array $outpu return $this->lang->sprintf( $this->lang->tyl_alert, $outputAlert['from_user'], - htmlspecialchars_uni($alertContent['t_subject']) + $alertContent['t_subject'] ); }