Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
423199c1
Commit
423199c1
authored
12 years ago
by
Regis Houssin
Browse files
Options
Downloads
Plain Diff
Merge pull request #304 from marcosgdf/fix-bug-485
Fixed bug #485
parents
53c9830f
f54c92ee
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
ChangeLog
+1
-0
1 addition, 0 deletions
ChangeLog
htdocs/public/members/new.php
+5
-0
5 additions, 0 deletions
htdocs/public/members/new.php
with
6 additions
and
0 deletions
ChangeLog
+
1
−
0
View file @
423199c1
...
...
@@ -39,6 +39,7 @@ For users:
- Fix: No images into product description lines as PDF generation does
not work with this.
- New: [ task #326 ]: Add a numbering module to suggest automatically a product ref
- Fix: [ bug #485 ]: Configurated amount for public auto-subscription form is not taken into account
For developers:
- New: Add webservice for thirdparty creation and list.
...
...
This diff is collapsed.
Click to expand it.
htdocs/public/members/new.php
+
5
−
0
View file @
423199c1
...
...
@@ -3,6 +3,7 @@
* Copyright (C) 2001-2002 Jean-Louis Bergamo <jlb@j1b.org>
* Copyright (C) 2006-2011 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2012 Regis Houssin <regis@dolibarr.fr>
* Copyright (C) 2012 J. Fernando Lagrange <fernando@demo-tic.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
...
...
@@ -537,6 +538,10 @@ if (! empty($conf->global->MEMBER_NEWFORM_AMOUNT)
{
// $conf->global->MEMBER_NEWFORM_SHOWAMOUNT is an amount
$amount
=
0
;
if
(
!
empty
(
$conf
->
global
->
MEMBER_NEWFORM_AMOUNT
))
{
$amount
=
$conf
->
global
->
MEMBER_NEWFORM_AMOUNT
;
}
if
(
!
empty
(
$conf
->
global
->
MEMBER_NEWFORM_PAYONLINE
))
{
$amount
=
GETPOST
(
'amount'
)
?
GETPOST
(
'amount'
)
:
$conf
->
global
->
MEMBER_NEWFORM_AMOUNT
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment