1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 09:34:54 +02:00

More Admin->Mailout fixes and form inline fix for apostrophes.

This commit is contained in:
Cameron
2014-10-14 02:12:13 -07:00
parent f644b7b8a3
commit ca3be14770
3 changed files with 48 additions and 14 deletions

View File

@@ -216,15 +216,23 @@ class newsletter_mailout
}
$c++;
}
return $var;
}
else
elseif($allow_edit == true)
{
return false; // Return Nothing to avoid confusion.
// $var[$c]['caption'] = NLLAN_50;
// $var[$c]['html'] = '';
$var[0]['caption'] = "No newsletters found";
$var[0]['html'] = '';
return $var;
}
else
{
return false; // Return Nothing to avoid confusion.
}
return $var;
}
}