Fix multi source redirects bug
This commit is contained in:
parent
25ff5bf759
commit
5109879ab6
1 changed files with 1 additions and 7 deletions
|
@ -183,13 +183,7 @@ if(isset($_POST['savemode'])){
|
|||
}
|
||||
else{
|
||||
$inputDestination = emailsToString($inputDestinations);
|
||||
|
||||
if(AbstractRedirect::attr('multiSource') !== false && count($inputSources) > 1){
|
||||
$hash = md5(emailsToString($inputSources));
|
||||
}
|
||||
else{
|
||||
$hash = null;
|
||||
}
|
||||
$hash = (count($inputSources) === 1) ? null : md5(emailsToString($inputSources));
|
||||
|
||||
foreach($inputSources as $inputSource){
|
||||
$data = array(
|
||||
|
|
Loading…
Add table
Reference in a new issue