Skip to content

Commit

Permalink
use subject and meta title on stats overview page if they are differe…
Browse files Browse the repository at this point in the history
…nt (#317)

Signed-off-by: Xheni Myrtaj <myrtajxheni@gmail.com>
  • Loading branch information
xh3n1 authored and michield committed May 17, 2018
1 parent c2c8377 commit dc16d27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public_html/lists/admin/actions/statsoverview.php
Expand Up @@ -98,10 +98,10 @@

if ($messagedata['subject'] != $messagedata['campaigntitle']) {
$element = '<!--'.$row['messageid'].'-->'
.'<strong>'.shortenTextDisplay($messagedata['campaigntitle'], 30).'</strong>';
.stripslashes(shortenTextDisplay($messagedata['campaigntitle'], 30)).'<br/><strong>'.stripslashes(shortenTextDisplay($messagedata['subject'], 30)).'</strong>';
} else {
$element = '<!--'.$row['messageid'].'-->'
.shortenTextDisplay($messagedata['subject'], 30);
.stripslashes(shortenTextDisplay($messagedata['subject'], 30));
}

$fwded = Sql_Fetch_Row_Query(sprintf('select count(id) from %s where message = %d',
Expand Down

0 comments on commit dc16d27

Please sign in to comment.