FUDforum
Fast Uncompromising Discussions. FUDforum will get your users talking.

Home » FUDforum Development » Bug Reports » Optional custom headers not being set in db or sent in email
Show: Today's Messages :: Polls :: Message Navigator
Return to the default flat view Create a new topic Submit Reply
Re: Optional custom headers not being set in db or sent in email [message #19587 is a reply to message #19586] Mon, 09 August 2004 00:01 Go to previous messageGo to previous message
newnumbertwo is currently offline  newnumbertwo   United States
Messages: 38
Registered: June 2004
Karma:
Member
This may already be fixed in CVS, but I was able to get around the problem of sending the additional custom headers by changing this:

        if (is_array($additional_headers)) {
                $header .= implode("\n", $additional_headers);
        }

to this:

        if (is_array($additional_headers)) {
                $header .= implode("\n", $additional_headers);
        } elseif ($additional_headers) {
                $header .= $additional_headers."\n";
        }


in FUDforum/include/mlist_post.inc
[Message index]
 
Read Message
Read Message
Read Message
Previous Topic: icq can't send a message
Next Topic: reindex db
Goto Forum:
  

-=] Back to Top [=-
[ Syndicate this forum (XML) ] [ RSS ]

Current Time: Mon Jul 01 14:53:55 GMT 2024

Total time taken to generate the page: 0.05315 seconds