You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$Form->checkbox( 'post_anonymous', $edited_Blog->get_setting( 'post_anonymous' ), T_('New posts by anonymous users'), T_('Check to allow create posts for anonymous users. NOTE: users will be registered after posting automatically.') );
179
+
$Form->checkbox( 'post_anonymous', $edited_Blog->get_setting( 'post_anonymous' ), T_('New posts by anonymous users'), T_('Check to allow anonymous users to create new posts (useful for Forums). NOTE: a user accoutn will be automatically created when they post.') );
// Force email sending to not activated users if email campaign is configurated to auto sending (e-g to send email on auto subscription on registration):
// Update arrays where we store which users received email and who waiting it now:
659
684
$this->users['receive'][] = $user_ID;
@@ -692,19 +717,22 @@ function send_all_emails( $display_messages = true )
692
717
693
718
$DB->commit();
694
719
695
-
$Messages->clear();
696
-
$wait_count = count( $this->users['wait'] );
697
-
if( $wait_count > 0 )
698
-
{ // Some recipients still wait this newsletter:
699
-
$Messages->add( sprintf( T_('Emails have been sent to a chunk of %s recipients. %s recipients were skipped. %s recipients have not been sent to yet.'),
$Messages->add( T_('Emails have been sent to all recipients of this campaign.'), 'success' );
720
+
if( $display_messages )
721
+
{ // Print the messages:
722
+
$Messages->clear();
723
+
$wait_count = count( $this->users['wait'] );
724
+
if( $wait_count > 0 )
725
+
{ // Some recipients still wait this newsletter:
726
+
$Messages->add( sprintf( T_('Emails have been sent to a chunk of %s recipients. %s recipients were skipped. %s recipients have not been sent to yet.'),
0 commit comments