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
46d1181a
Commit
46d1181a
authored
11 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Plain Diff
Merge branch '3.5' of git@github.com:Dolibarr/dolibarr.git into 3.5
parents
295f0fd9
7e2027ec
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
ChangeLog
+2
-0
2 additions, 0 deletions
ChangeLog
htdocs/admin/delais.php
+1
-1
1 addition, 1 deletion
htdocs/admin/delais.php
htdocs/comm/action/fiche.php
+2
-2
2 additions, 2 deletions
htdocs/comm/action/fiche.php
htdocs/core/class/interfaces.class.php
+1
-1
1 addition, 1 deletion
htdocs/core/class/interfaces.class.php
with
6 additions
and
4 deletions
ChangeLog
+
2
−
0
View file @
46d1181a
...
@@ -4,6 +4,8 @@ English Dolibarr ChangeLog
...
@@ -4,6 +4,8 @@ English Dolibarr ChangeLog
***** ChangeLog for 3.5.1 compared to 3.5.0 *****
***** ChangeLog for 3.5.1 compared to 3.5.0 *****
Fix: Do not report trigger errors twice.
Fix: Error when creating event was not reported.
Fix: Bug of import of agenda when using https link
Fix: Bug of import of agenda when using https link
Fix: Field nature not saved correctly
Fix: Field nature not saved correctly
Fix: Substituion of extra field was ko for order
Fix: Substituion of extra field was ko for order
...
...
This diff is collapsed.
Click to expand it.
htdocs/admin/delais.php
+
1
−
1
View file @
46d1181a
...
@@ -107,7 +107,7 @@ if ($action == 'update')
...
@@ -107,7 +107,7 @@ if ($action == 'update')
{
{
foreach
(
$delays
as
$delay
)
foreach
(
$delays
as
$delay
)
{
{
if
(
GETPOST
(
$delay
[
'code'
]))
if
(
GETPOST
(
$delay
[
'code'
])
!=
''
)
{
{
dolibarr_set_const
(
$db
,
$delay
[
'code'
],
GETPOST
(
$delay
[
'code'
]),
'chaine'
,
0
,
''
,
$conf
->
entity
);
dolibarr_set_const
(
$db
,
$delay
[
'code'
],
GETPOST
(
$delay
[
'code'
]),
'chaine'
,
0
,
''
,
$conf
->
entity
);
}
}
...
...
This diff is collapsed.
Click to expand it.
htdocs/comm/action/fiche.php
+
2
−
2
View file @
46d1181a
...
@@ -261,8 +261,8 @@ if ($action == 'add_action')
...
@@ -261,8 +261,8 @@ if ($action == 'add_action')
{
{
$db
->
rollback
();
$db
->
rollback
();
$langs
->
load
(
"errors"
);
$langs
->
load
(
"errors"
);
$error
=
$langs
->
trans
(
$actioncomm
->
error
);
if
(
!
empty
(
$actioncomm
->
error
))
setEventMessage
(
$langs
->
trans
(
$actioncomm
->
error
)
,
'errors'
)
;
setEventMessage
(
$error
,
'errors'
);
if
(
count
(
$actioncomm
->
errors
))
setEventMessage
(
$
actioncomm
->
error
s
,
'errors'
);
$action
=
'create'
;
$action
=
'create'
;
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
htdocs/core/class/interfaces.class.php
+
1
−
1
View file @
46d1181a
...
@@ -167,8 +167,8 @@ class Interfaces
...
@@ -167,8 +167,8 @@ class Interfaces
// Action KO
// Action KO
$nbtotal
++
;
$nbtotal
++
;
$nbko
++
;
$nbko
++
;
if
(
!
empty
(
$objMod
->
error
))
$this
->
errors
[]
=
$objMod
->
error
;
if
(
!
empty
(
$objMod
->
errors
))
$this
->
errors
=
array_merge
(
$this
->
errors
,
$objMod
->
errors
);
if
(
!
empty
(
$objMod
->
errors
))
$this
->
errors
=
array_merge
(
$this
->
errors
,
$objMod
->
errors
);
else
if
(
!
empty
(
$objMod
->
error
))
$this
->
errors
[]
=
$objMod
->
error
;
}
}
}
}
else
else
...
...
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