Quote:
Originally Posted by Lionel
there seem to be a bug when you click on Go Advanced. Since there are no $_POST['rag_recipients']
foreach ($_POST['rag_recipients'] AS $rag_recipient)
you get an error.
So I made the plugin
|
I don't understand what you mean, sorry.
That's allready in the plugin! Or do you mean something other?
PHP Code:
<?php
// title: set recipients
// code:
if ($_POST['do'] == 'insertpm' AND $_POST['rag_recipients'])
{
foreach ($_POST['rag_recipients'] AS $rag_recipient)
{
$string_rec .= $rag_recipient . '; ';
}
if ($_POST['recipients'] != '')
{
$_POST['recipients'] = $_POST['recipients'] . '; ' . $string_rec;
}
else
{
$_POST['recipients'] = $string_rec;
}
}
?>