Skip to content

Commit 3f8ec47

Browse files
committed
Merge remote-tracking branch 'origin/3.5' into 3.6
Conflicts: ChangeLog
2 parents 6b6b372 + 3336b5b commit 3f8ec47

File tree

3 files changed

+10
-11
lines changed

3 files changed

+10
-11
lines changed

ChangeLog

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,20 +113,23 @@ removed. You must now use the 6 parameters way. See file modMyModule.class.php f
113113
***** ChangeLog for 3.5.5 compared to 3.5.4 *****
114114
Fix: Holiday module was broken. Initializaion of amount of holidays failed.
115115
Fix: [ bug #1523 ] suite bug #1334 : filtre et ordre de tri conjoints ne s'appliquent pas.
116-
Fix: Fusion PDF button on unpaid invoice is no more displayed
117-
Fix: Unpaid invoice launch fusion PDF action even if it is only search (with enter keyboard input instead of lens click)
116+
Fix: Fusion PDF button on unpaid invoice is no more displayed.
117+
Fix: Unpaid invoice launch fusion PDF action even if it is only search (with enter keyboard input instead of lens click).
118118
Fix: Pb when showing log list of holiday module with some mysql versions.
119119
Fix: Error with bad timezone pushed by some browsers.
120120
Fix: shipping list SQL request was not filtering on shipping element
121121
Fix: debian package provided by dolibarr team must use embedded libraries.
122122
Fix: [ bug #1528 ] Leopard Services numeration module description is not translated.
123-
Fix: [ bug #1523 ] suite bug #1334 : filtre et ordre de tri conjoints ne s'appliquent pas
124-
Fix: [ bug #1534 ] Unknown error when deleting a product photo under special circumstances
123+
Fix: [ bug #1523 ] suite bug #1334 : filtre et ordre de tri conjoints ne s'appliquent pas.
124+
Fix: [ bug #1534 ] Unknown error when deleting a product photo under special circumstances.
125125
Fix: Update impayees.php
126-
Fix: Link product, In list view and label product
126+
Fix: Link product, In list view and label product.
127127
Fix: visible task into area "time" for "My task" must limit task to tasks i am assigned to.
128128
Fix: When disabled, all fields to add time into task line must be disabled.
129129
Fix: Missing include files.lib.php in some pages that use dol_delete_recursive
130+
Fix: Missing include files.lib.php in some pages ti use dol_delete_recursive.
131+
Fix: [ bug #1558 ] Product/service edit page title shows new Ref instead of old ref.
132+
Fix: [ bug #1553 ] Saving User displays setup removes menu.
130133

131134
***** ChangeLog for 3.5.4 compared to 3.5.3 *****
132135
Fix: Hide title of event when agenda module disabled.

htdocs/product/fiche.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@
10751075

10761076
$type = $langs->trans('Product');
10771077
if ($object->isservice()) $type = $langs->trans('Service');
1078-
print_fiche_titre($langs->trans('Modify').' '.$type.' : '.$object->ref, "");
1078+
print_fiche_titre($langs->trans('Modify').' '.$type.' : '.(is_object($object->oldcopy)?$object->oldcopy->ref:$object->ref), "");
10791079

10801080
// Main official, simple, and not duplicated code
10811081
print '<form action="'.$_SERVER['PHP_SELF'].'" method="POST">'."\n";

htdocs/user/param_ihm.php

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
/* Copyright (C) 2005-2013 Laurent Destailleur <eldy@users.sourceforge.net>
2+
/* Copyright (C) 2005-2014 Laurent Destailleur <eldy@users.sourceforge.net>
33
* Copyright (C) 2010-2012 Regis Houssin <regis.houssin@capnetworks.com>
44
* Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro.com>
55
*
@@ -87,8 +87,6 @@
8787
if ($_POST["check_MAIN_LANG_DEFAULT"]=="on") $tabparam["MAIN_LANG_DEFAULT"]=$_POST["main_lang_default"];
8888
else $tabparam["MAIN_LANG_DEFAULT"]='';
8989

90-
$tabparam["MAIN_MENU_STANDARD"]=$_POST["MAIN_MENU_STANDARD"];
91-
9290
if ($_POST["check_SIZE_LISTE_LIMIT"]=="on") $tabparam["MAIN_SIZE_LISTE_LIMIT"]=$_POST["main_size_liste_limit"];
9391
else $tabparam["MAIN_SIZE_LISTE_LIMIT"]='';
9492

@@ -101,8 +99,6 @@
10199

102100
$result=dol_set_user_param($db, $conf, $fuser, $tabparam);
103101

104-
$_SESSION["mainmenu"]=""; // Le gestionnaire de menu a pu changer
105-
106102
header('Location: '.$_SERVER["PHP_SELF"].'?id='.$id);
107103
exit;
108104
}

0 commit comments

Comments
 (0)