Skip to content

Commit

Permalink
Fix setup of email
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Sep 1, 2018
1 parent dfda029 commit 5f2eeb5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions htdocs/paybox/admin/paybox.php
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,8 @@

print '<tr class="oddeven"><td>';
print $langs->trans("ONLINE_PAYMENT_SENDEMAIL").'</td><td>';
print '<input size="32" type="email" name="ONLINE_PAYMENT_SENDEMAIL" value="'.$conf->global->ONLINE_PAYMENT_SENDEMAIL.'">';
print ' &nbsp; '.$langs->trans("Example").': myemail@myserver.com';
print '<input size="32" type="text" name="ONLINE_PAYMENT_SENDEMAIL" value="'.$conf->global->ONLINE_PAYMENT_SENDEMAIL.'">';
print ' &nbsp; '.$langs->trans("Example").': myemail@myserver.com, Payment service <myemail2@myserver2.com>';
print '</td></tr>';

// Payment token for URL
Expand Down
4 changes: 2 additions & 2 deletions htdocs/paypal/admin/paypal.php
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,8 @@

print '<tr class="oddeven"><td>';
print $langs->trans("ONLINE_PAYMENT_SENDEMAIL").'</td><td>';
print '<input size="32" type="email" name="ONLINE_PAYMENT_SENDEMAIL" value="'.$conf->global->ONLINE_PAYMENT_SENDEMAIL.'">';
print ' &nbsp; '.$langs->trans("Example").': myemail@myserver.com';
print '<input size="32" type="text" name="ONLINE_PAYMENT_SENDEMAIL" value="'.$conf->global->ONLINE_PAYMENT_SENDEMAIL.'">';
print ' &nbsp; '.$langs->trans("Example").': myemail@myserver.com, Payment service <myemail2@myserver2.com>';
print '</td></tr>';

print '<tr class="liste_titre">';
Expand Down
4 changes: 2 additions & 2 deletions htdocs/stripe/admin/stripe.php
Original file line number Diff line number Diff line change
Expand Up @@ -307,8 +307,8 @@

print '<tr class="oddeven"><td>';
print $langs->trans("ONLINE_PAYMENT_SENDEMAIL").'</td><td>';
print '<input size="32" type="email" name="ONLINE_PAYMENT_SENDEMAIL" value="'.$conf->global->ONLINE_PAYMENT_SENDEMAIL.'">';
print ' &nbsp; '.$langs->trans("Example").': myemail@myserver.com';
print '<input size="32" type="text" name="ONLINE_PAYMENT_SENDEMAIL" value="'.$conf->global->ONLINE_PAYMENT_SENDEMAIL.'">';
print ' &nbsp; '.$langs->trans("Example").': myemail@myserver.com, Payment service <myemail2@myserver2.com>';
print '</td></tr>';

// Payment token for URL
Expand Down

0 comments on commit 5f2eeb5

Please sign in to comment.