Opened 4 years ago

Closed 4 years ago

#1485796 closed Bugs (fixed)

Bug in devel-api 2361

Reported by: lacri Owned by:
Priority: 5 Milestone: 0.3-beta
Component: PHP backend Version:
Severity: normal Keywords:
Cc:

Description

i found a little bug
in devel-api changeset 2361

$message_body = $MAL_MIME->getHTMLBody(); 
 	305	    if ($isHtml && (preg_match($dispurl, $message_body) > 0)) { 

the bug is $MAL_MIME->getHTMLBody();

must changed in $MAIL_MIME->getHTMLBody();

$message_body = $MAIL_MIME->getHTMLBody(); 
 	305	    if ($isHtml && (preg_match($dispurl, $message_body) > 0)) { 

Change History (1)

comment:1 Changed 4 years ago by alec

  • Milestone changed from later to 0.3-beta
  • Resolution set to fixed
  • Status changed from new to closed

Fixed in r2365/svn

Note: See TracTickets for help on using tickets.