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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
5e00fb8f
Commit
5e00fb8f
authored
8 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Fix sepa mandate translation
parent
78182ab5
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
htdocs/core/actions_builddoc.inc.php
+4
-0
4 additions, 0 deletions
htdocs/core/actions_builddoc.inc.php
htdocs/langs/en_US/main.lang
+1
-0
1 addition, 0 deletions
htdocs/langs/en_US/main.lang
htdocs/societe/rib.php
+1
-1
1 addition, 1 deletion
htdocs/societe/rib.php
with
6 additions
and
1 deletion
htdocs/core/actions_builddoc.inc.php
+
4
−
0
View file @
5e00fb8f
...
...
@@ -88,6 +88,10 @@ if ($action == 'builddoc' && $permissioncreate)
setEventMessages
(
$object
->
error
,
$object
->
errors
,
'errors'
);
$action
=
''
;
}
else
{
setEventMessages
(
$langs
->
trans
(
"FileGenerated"
),
null
);
}
}
}
...
...
This diff is collapsed.
Click to expand it.
htdocs/langs/en_US/main.lang
+
1
−
0
View file @
5e00fb8f
...
...
@@ -70,6 +70,7 @@ SeeHere=See here
BackgroundColorByDefault=Default background color
FileRenamed=The file was successfully renamed
FileUploaded=The file was successfully uploaded
FileGenerated=The file was successfully generated
FileWasNotUploaded=A file is selected for attachment but was not yet uploaded. Click on "Attach file" for this.
NbOfEntries=Nb of entries
GoToWikiHelpPage=Read online help (Internet access needed)
...
...
This diff is collapsed.
Click to expand it.
htdocs/societe/rib.php
+
1
−
1
View file @
5e00fb8f
...
...
@@ -45,7 +45,7 @@ $result = restrictedArea($user, 'societe','','');
$id
=
GETPOST
(
"id"
,
"int"
);
$ribid
=
GETPOST
(
"ribid"
,
"int"
);
$action
=
GETPOST
(
"action"
);
$action
=
GETPOST
(
"action"
,
'alpha'
,
3
);
$object
=
new
Societe
(
$db
);
$object
->
fetch
(
$socid
);
...
...
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