Fix: Direct payment from autosubscribe form was showing wrong text.
This commit is contained in:
parent
0939965045
commit
d4f06046f0
@ -23,7 +23,7 @@
|
|||||||
* \file htdocs/adherents/fiche.php
|
* \file htdocs/adherents/fiche.php
|
||||||
* \ingroup member
|
* \ingroup member
|
||||||
* \brief Page of member
|
* \brief Page of member
|
||||||
* \version $Id: fiche.php,v 1.237 2011/07/13 11:50:33 eldy Exp $
|
* \version $Id$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require("../main.inc.php");
|
require("../main.inc.php");
|
||||||
@ -944,7 +944,7 @@ if ($action == 'edit')
|
|||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
// Country
|
// Country
|
||||||
//$adh->pays_id=$adh->pays_id?$adh->pays_id:$mysoc->pays_id; // In edit mode we don't force to company country if not defined
|
$adh->pays_id=$adh->pays_id?$adh->pays_id:$mysoc->pays_id;
|
||||||
print '<tr><td width="25%">'.$langs->trans('Country').'</td><td>';
|
print '<tr><td width="25%">'.$langs->trans('Country').'</td><td>';
|
||||||
$html->select_pays(isset($_POST["pays_id"])?$_POST["pays_id"]:$adh->pays_id,'pays_id');
|
$html->select_pays(isset($_POST["pays_id"])?$_POST["pays_id"]:$adh->pays_id,'pays_id');
|
||||||
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
if ($user->admin) print info_admin($langs->trans("YouCanChangeValuesForThisListFromDictionnarySetup"),1);
|
||||||
@ -1505,5 +1505,5 @@ if ($rowid && $action != 'edit')
|
|||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
llxFooter('$Date: 2011/07/13 11:50:33 $ - $Revision: 1.237 $');
|
llxFooter('$Date$ - $Revision$');
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -22,7 +22,7 @@
|
|||||||
* \file htdocs/public/members/new.php
|
* \file htdocs/public/members/new.php
|
||||||
* \ingroup member
|
* \ingroup member
|
||||||
* \brief Example of form to add a new member
|
* \brief Example of form to add a new member
|
||||||
* \version $Id: new.php,v 1.42 2011/07/13 11:56:36 eldy Exp $
|
* \version $Id: new.php,v 1.41 2011/07/13 11:14:43 eldy Exp $
|
||||||
*
|
*
|
||||||
* Note that you can add following constant to change behaviour of page
|
* Note that you can add following constant to change behaviour of page
|
||||||
* MEMBER_NEWFORM_AMOUNT Default amount for autosubscribe form
|
* MEMBER_NEWFORM_AMOUNT Default amount for autosubscribe form
|
||||||
@ -184,7 +184,7 @@ if ($action == 'add')
|
|||||||
}
|
}
|
||||||
if (! empty($conf->global->MEMBER_NEWFORM_DOLIBARRTURNOVER))
|
if (! empty($conf->global->MEMBER_NEWFORM_DOLIBARRTURNOVER))
|
||||||
{
|
{
|
||||||
if (GETPOST("morphy") == 'mor' && GETPOST('budget') <= 0)
|
if (GETPOST('budget') <= 0)
|
||||||
{
|
{
|
||||||
$error+=1;
|
$error+=1;
|
||||||
$errmsg .= $langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("TurnoverOrBudget"))."<br>\n";
|
$errmsg .= $langs->trans("ErrorFieldRequired",$langs->transnoentitiesnoconv("TurnoverOrBudget"))."<br>\n";
|
||||||
@ -289,7 +289,7 @@ if ($action == 'added')
|
|||||||
print $langs->trans("NewMemberbyWeb");
|
print $langs->trans("NewMemberbyWeb");
|
||||||
print '</center>';
|
print '</center>';
|
||||||
|
|
||||||
llxFooterVierge('$Date: 2011/07/13 11:56:36 $ - $Revision: 1.42 $');
|
llxFooterVierge('$Date: 2011/07/13 11:14:43 $ - $Revision: 1.41 $');
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -537,5 +537,5 @@ print "<br></form>\n";
|
|||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
llxFooterVierge('$Date: 2011/07/13 11:56:36 $ - $Revision: 1.42 $');
|
llxFooterVierge('$Date: 2011/07/13 11:14:43 $ - $Revision: 1.41 $');
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -23,7 +23,7 @@
|
|||||||
* \ingroup paybox
|
* \ingroup paybox
|
||||||
* \brief File to offer a way to make a payment for a particular Dolibarr entity
|
* \brief File to offer a way to make a payment for a particular Dolibarr entity
|
||||||
* \author Laurent Destailleur
|
* \author Laurent Destailleur
|
||||||
* \version $Id: newpayment.php,v 1.59 2011/07/13 12:00:18 eldy Exp $
|
* \version $Id: newpayment.php,v 1.58 2011/07/13 11:42:39 eldy Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
define("NOLOGIN",1); // This means this output page does not require to be logged.
|
define("NOLOGIN",1); // This means this output page does not require to be logged.
|
||||||
@ -188,11 +188,11 @@ if ($urllogo)
|
|||||||
|
|
||||||
// Output introduction text
|
// Output introduction text
|
||||||
$text='';
|
$text='';
|
||||||
if (! empty($conf->global->PAYBOX_NEWFORM_TEXT))
|
if (! empty($conf->global->PAYBOX_NEWMEMBER_TEXT))
|
||||||
{
|
{
|
||||||
$langs->load("members");
|
$langs->load("members");
|
||||||
if (preg_match('/^\((.*)\)$/',$conf->global->PAYBOX_NEWFORM_TEXT,$reg)) $text.=$langs->trans($reg[1])."<br>\n";
|
if (preg_match('/^\((.*)\)$/',$conf->global->PAYBOX_NEWMEMBER_TEXT,$reg)) $text.=$langs->trans($reg[1])."<br>\n";
|
||||||
else $text.=$conf->global->PAYBOX_NEWFORM_TEXT."<br>\n";
|
else $text.=$conf->global->PAYBOX_NEWMEMBER_TEXT."<br>\n";
|
||||||
}
|
}
|
||||||
if (empty($text))
|
if (empty($text))
|
||||||
{
|
{
|
||||||
@ -728,5 +728,5 @@ html_print_paybox_footer($mysoc,$langs);
|
|||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
llxFooterPayBox('$Date: 2011/07/13 12:00:18 $ - $Revision: 1.59 $');
|
llxFooterPayBox('$Date: 2011/07/13 11:42:39 $ - $Revision: 1.58 $');
|
||||||
?>
|
?>
|
||||||
|
|||||||
@ -23,7 +23,7 @@
|
|||||||
* \ingroup paypal
|
* \ingroup paypal
|
||||||
* \brief File to offer a way to make a payment for a particular Dolibarr entity
|
* \brief File to offer a way to make a payment for a particular Dolibarr entity
|
||||||
* \author Laurent Destailleur
|
* \author Laurent Destailleur
|
||||||
* \version $Id: newpayment.php,v 1.24 2011/07/13 12:00:18 eldy Exp $
|
* \version $Id: newpayment.php,v 1.23 2011/07/13 11:42:39 eldy Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
define("NOLOGIN",1); // This means this output page does not require to be logged.
|
define("NOLOGIN",1); // This means this output page does not require to be logged.
|
||||||
@ -282,11 +282,11 @@ if ($urllogo)
|
|||||||
|
|
||||||
// Output introduction text
|
// Output introduction text
|
||||||
$text='';
|
$text='';
|
||||||
if (! empty($conf->global->PAYPAL_NEWFORM_TEXT))
|
if (! empty($conf->global->PAYBOX_NEWMEMBER_TEXT))
|
||||||
{
|
{
|
||||||
$langs->load("members");
|
$langs->load("members");
|
||||||
if (preg_match('/^\((.*)\)$/',$conf->global->PAYPAL_NEWFORM_TEXT,$reg)) $text.=$langs->trans($reg[1])."<br>\n";
|
if (preg_match('/^\((.*)\)$/',$conf->global->PAYBOX_NEWMEMBER_TEXT,$reg)) $text.=$langs->trans($reg[1])."<br>\n";
|
||||||
else $text.=$conf->global->PAYPAL_NEWFORM_TEXT."<br>\n";
|
else $text.=$conf->global->PAYBOX_NEWMEMBER_TEXT."<br>\n";
|
||||||
}
|
}
|
||||||
if (empty($text))
|
if (empty($text))
|
||||||
{
|
{
|
||||||
@ -946,5 +946,5 @@ html_print_paypal_footer($mysoc,$langs);
|
|||||||
|
|
||||||
$db->close();
|
$db->close();
|
||||||
|
|
||||||
llxFooterPaypal('$Date: 2011/07/13 12:00:18 $ - $Revision: 1.24 $');
|
llxFooterPaypal('$Date: 2011/07/13 11:42:39 $ - $Revision: 1.23 $');
|
||||||
?>
|
?>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user