forked from PrestaShop/PrestaShop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCHANGELOG.txt
More file actions
executable file
·8282 lines (7355 loc) · 485 KB
/
Copy pathCHANGELOG.txt
File metadata and controls
executable file
·8282 lines (7355 loc) · 485 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2007-2013 PrestaShop
NOTICE OF LICENSE
This source file is subject to the Open Software License (OSL 3.0)
that is bundled with this package in the file LICENSE.txt.
It is also available through the world-wide-web at this URL:
http://opensource.org/licenses/osl-3.0.php
If you did not receive a copy of the license and are unable to
obtain it through the world-wide-web, please send an email
to [email protected] so we can send you a copy immediately.
DISCLAIMER
Do not edit or add to this file if you wish to upgrade PrestaShop to newer
versions in the future. If you wish to customize PrestaShop for your
needs please refer to http://www.prestashop.com for more information.
@author PrestaShop SA <[email protected]>
@copyright 2007-2013 PrestaShop SA
@license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
International Registred Trademark & Property of PrestaShop SA
Release Notes for PrestaShop 1.5
--------------------------------
####################################
# v1.5.6.0 - (2013-10-07) #
####################################
Fixed bugs:
[-] Installer : added the missing default tab in the employee
[-] INSTALLER : Fix bug #PSCFV-8289 bad orders vouchers total after update
[-] INSTALLER: Wrong SQL query for PS_LEGACY_IMAGES to 0
[-] INSTALLER: short_description for PREFIX_manufacturer_lang is now type TEXT
[-] INSTALLER : Fix infinite loop when order message has additional ampersand
[-] INSTALLER : Fix fatal error in upgrade, could not load configuration class
[-] INSTALLER : no update value in fix_download_product_feature_active
[-] INSTALLER : Fix fatal error when upgrading
[-] FO : isVirtualCart was forced to false
[-] FO: Fix display of quantity discounts on product pages if the customer is allowable for multiple discount for the same quantity #PSCFV-10580
[-] FO: packages should be splitted with advanced stock management when carrier is not associated to multiple warehouse
[-] FO : Fix #PSCFV-10480 again, css fix
[-] FO : Fix #PSCFV-10480 again css fix
[-] FO : Fix bug #PSCFV-10478 could not see auto added cart rule voucher on product page
[-] FO: Fix #PSCFV-10461
[-] FO : Fix bug #PSCFV-10328 Set country currency if defined when geolocated
[-] FO: Fix Product::getAttributesGroups() minimal_quantity/weight/available_date should be multishop
[-] FO : replace ucfirst by ucwords for the customer firstname #PSCFV-10396
[-] FO : 301 Redirect /iso_lang to /iso_lang/ url
[-] FO : Fix bug #PSCFV-8917 taxes calculation when changing delivery address
[-] FO: Fix SSL links on domain_ssl instead domain
[-] FO : fixed chinese search with multiple symbols #PSCFV-10322
[-] FO : Partial fix of adding gift on cart rule on the same entity in the cart rule
[-] FO : Fix bug #PSCFV-10118 quantity not updated when cart rules give the same product as gift
[-] FO : fixed bug when is virtual cart on OPC carriers is no longer displayed
[-] FO : FixBug when route id is empty
[-] BO : Bug fix - Modules confirmation messages
[-] BO : Retro compat, PS_ADMIN_DIR not defined //bad commit sorry
[-] BO : Employee's default_tab may not exists, switching to AdminOrders
[-] BO : Retro compat, PS_ADMIN_DIR not defined
[-] BO : AdminImport add combinations available fields
[-] BO : AdminImport add adresses required fields
[-] BO : Fix bug #PSCFV-9323 supplier_reference can be unset
[-] BO : Fix bug #PSCFV-10064, could not import feature in multilang, thanks @E.Bigfoot
[-] BO : Fix bug #PSCFV-10064, could not import deature in multilang, thanks @E.Bigfoot
[-] BO : Remove dead code in AdminImport
[-] BO : FixBug #PSCFV-10558 - Invalid HTML markup.
[-] BO : Fix bug #PSCFV-8389 duplicates is SpecificPrice table
[-] BO : AdminImport, tables are not truncated
[-] BO : managed decimal format in BO orders
[-] BO : Fix bug #PSCFV-5060 could not import supplier_combinations in combinations import
[-] BO : Fix #PSCFV-6482 could not import tags in deiffrent languages
[-] BO : fixed currency format on order creation
[-] Bo : Fix again #PSCFV-10474 again, not deleting start page after import
[-] Bo : Fix again #PSCFV-10474 coul not export more than 300 products
[-] BO: Fix total without tax in breakdown taxes when taxes are combined #PSCFV-10394 on the invoices
[-] BO: translation mismatch Here is a form to edit the values in the group, we do not need here "attribute type".
[-] BO : AdminImport, not matching by ref for updating
[-] BO: Fix #PSCFV-10488 filter by employee on logs tab
[-] BO : FixBig #PSCFV-10442 - Members Cutomer Group list
[-] BO : Could not import empty linkrewrite for products and not matching refs
[-] BO : Sort import files in select
[-] BO : Remove duplicate sql insert in setProductOutOfStock in monoshop
[-] BO : Fix #PSCFV-10501 Remove fatal error
[-] BO : Fix bug #PSCFV-9675 could not import non existent parent category
[-] BO : Bad entity pre selected in AdminImport
[-] BO : Fix bug #PSCFV-10483, could not import other language product link_rewrite
[-] BO: Fix data validation when iframe is allowed on some entities like CMS
[-] BO : Fix Bug For new Fancy Box events
[-] BO : fixed the redirection to a 404 page when loging in in the updater
[-] BO : Bad input radio names
[-] BO : Issue with domready on adminImport
[-] BO : do not reaffect import_type for categories
[-] BO: Bad id for multishop checkbox on admin products - weird bug with active flag #PSCFV-9935
[-] BO : Fix proces and save buttons for Modules and AdminControllers
[-] Bo : Modules 'save' button not active
[-] BO : Fix bug #PSCFV-8214 import entity pre selected
[-] BO : Fix bugPSCFV-10249 images copy when unix path
[-] BO : limited the number of customers displayed in the group view to 100 in order to avoid memory usage error
[-] BO : FixBug #PSCFV-9900 Double quote escape problem in delete button link
[-] BO : Could not order in AdminStatuses by ID or template
[-] BO : Fix bug #PSCFV-8407 can not customize feature column name if needed
[-] BO : quote badly decoded in customerThreads
[-] BO : Fix Bug #PSCFV-10331 check all from list
[-] BO : Customer message twice encoded
[-] BO : Fix bug, orders states not ordered by order state name
[-] BO : Bug fix - Encoding & tips of the day
[-] BO : Do not copy link_rewrite from title if cms already has one
[-] BO : Small changes when creating vouchers in back office orders
[-] BO: Fix out of stock creation with multishop and stock sharing
[-] BO: Fix preview url with multishop
[-] BO : Fix possible Uncaught exception 'ReflectionException' when viewing AdminMeta
[-] BO : FixBug PSCFV-10331 - Tax rules Pagination
[-] BO : Display the old image system migration tool if product images are in _PS_PROD_IMG_DIR_
[-] BO : ini_get('safe_mode') can return false
[-] BO : AdminModulesController - Bug fix, $params was not set
[-] BO : Fix #PSCFV-9906 could not register search engines keywords
[-] BO : Fix pull request #665
[-] BO : Fix error returned when first import of a localisation pack
[-] BO : FixBug #PSCFV-10213 check product/attribute id - Thanks F. Cespedes
[-] BO: Fix fatal error on customer edition when email is not valid
[-] BO : fixed bug when try to add jquery from ajax.googleapis.com in BO
[-] BO : FixBug Url rewrite preview when user have a different language from shop
[-] BO : fixed bug with multistore context on carrier wizard
[-] Classes : Bug fix - FrontController, mobile & JS minifier fixed
[-] CORE : #PSCFV-10389 Avoid eventual empty Specific Price Rule
[-] CORE : Fix bug #PSCFV-10179 Duplicate specific price records when updating a product
[-] CORE : Cart rules not ordered by priority for PaymentModule
[-] CORE : Partial fix bug #PSCFV-10534 bad total_products_wt calculated without other cart rules
[-] CORE : Could not add too long tags
[-] CORE : Missing tag max size
[-] CORE : Partial fix for #PSCFV-10482 getCacheId is different in back office
[-] CORE : Fix bug #PSCFV-10471 Cart item count problem, unique_id grouping error for id_product and id_product_attribute
[-] CORE : #PSCFV-10461 customer group in getPriceStatic, pull request https://github.com/kpodemski/kp-PrestaShop/commit/361ebc72e09d00463bb7a7b7af670e3235ab6a5a
[-] Core: Set a remote addr with php-cli #PSCFV-10372
[-] CORE : Could not add several cart rules
[-] CORE : Fix bug #PSCFV-10040 Notice: Undefined index: unifunc && Fatal error: Function name must be a string on some PHP version with empty cache folder and smarty cache enabled
[-] CORE: Fix for field length and type regarding https://github.com/PrestaShop/PrestaShop/pull/678
[-] CORE : Remove PHP Warning: file_put_contents on modules config.xml
[-] CORE : fixed bug #PSCFV-10175 - No virtuel download email send after accepted payment
[-] MO : Blocklayered - Fix empty fancy box after template edit
[-] MO : FixBug #10460 - UTF8 bug on accented URL
[-] MO : Blockcart, wrong tbody
[-] MO : Fix buig #PSCFV-10480 Blockcart too long cart_block_product_name
[-] MO : FixBug #PNM-1683 - Treeview problem
[-] MO: Fix time of smarty cache invalidation
[-] MO : PNM-1715 - Bug fix accented chars & ajax-cart
[-] MO : Editorial could not delete image
[-] MO : Fixed a bug when displaying textures Corrections links texture image in the blocklayered
[-] MO : carriercompare fixed bug, override template's files in theme. Ticket #PNM-1691
[-] MO : Statsdata, exception on duplicate entry
[-] MO: Fix unifunc smarty errors if module is displayed on multiplehook without cache
[-] MO : fix bug #PSCFV-9906 again, bad url parsing
[-] MO: Fix blocklayered sort by quantity #PSCFV-10300
[-] WS: Fix order by on id field on multishop entities
[-] WS: Fix entities retrieve for some cases
[-] WS: 404 error should be returned if a multishop entity does not exists #PSCFV-10229
[-] WS: Bad xlink for tax_rules_group in product
[-] PDF : Report of https://github.com/enumag/PrestaShop/commit/9c939cceadebd58ad390fb4f108816e3c17c0275
[-] LO: Argeninian localization
Improved/changed features:
[*] Project : Orders should rely only on ps_order_cart_rule
[*] Installer : added file check in order to check if everyhting has been successfuly uploaded
[*] FO: Allow to enable SSL on all the pages
[*] FO : removed extra slash and point
[*] BO : AdminImport, retrieve separators and lang selected
[*] BO : Add category id in AdminSpecificPriceRule
[*] BO: Allow to breakdown the taxes when they are computed
[*] BO : AdminImport, remove csv files
[*] BO : Adminimport, check csv download path
[*] BO : Add csv file download in AdminImport
[*] BO : improved automatic language creation
[*] BO : Set import entity in cookie (#PSCFV-8214)
[*] BO: sort modules name in Stats
[*] CORE : Increasing the length of link_rewrite & name in Category.php In database this fields have varchar(128) so let's give the user full size of fields
[*] CORE : bad else if in getTemplatePath
[*] CORE : Refactoring Tools::copy() as copy with context > PHP 5.3
[*] Core: don't re-generate the class_index.php file if a class is not known to avoid misuse of class_exists()
[*] MO : MailAlerts : Add SQL update script for v2.5
[*] MO : MailAlerts : multishop/multilang full compatibility Customers will receive alerts based on the real context of the moment they subscribed to the alert (sho, theme & language) SQL update table : `ps_mailalert_customer_oos` ========================================= ALTER TABLE `ps_mailalert_customer_oos` ADD `id_lang` INT( 10 ) UNSIGNED NOT NULL , DROP PRIMARY KEY , ADD PRIMARY KEY ( `id_customer` , `customer_email` , `id_product` , `id_product_attribute` , `id_shop` ) ;
[*] LO : Removed 'Miss' from the default genders because too country specific
[*] LO : Use single quote as thousands separator for CHF currency
Added Features:
[+] FO : add getManufacturer() to ManufacturerControllerCore Add getManufacturer() to ManufacturerControllerCore to access the protected manufacturer instance of the controller.
[+] BO : add TinyMCE editor for supplier descrpition in AdminManufacturerSupplier
[+] BO : add TinyMCE editor for short and long descrpition in AdminManufacturerController
[+] BO : Improve mod rewrite check
[+] MO : add link to all manufacturer page and the feature to show All Suppliers
[+] MO : add the option to show all Manufacturer Add the option to show all Manufacturer in blocktopmenu module.
[+] MO : Mailalerts - Add Total tax paid to order confirmation
[+] TR : Added Indonesian installer
[+] LO : Completed Traditional Chinese Installer
[+] LO : Added Bengali installer
[+] LO: Added Traditional Chinese installer
####################################
# v1.5.5.0 - (2013-08-22) #
####################################
Fixed bugs:
[-] Installer : added ob_start() (required with the cookie mode when debug mode is activated)
[-] Installer : fixed clear smarty cache
[-] Installer : changed syntax from $class:func to call_user_func because it seems to be more compliant with old PHP versions
[-] INSTALLER : Force update of PS_LEGACY_IMAGES to 0
[-] INSTALLER : missing parenthesis in SQL in set_product_suppliers, thanks to @EvaldasUzkuras
[-] INSTALLER : Fix bug while updateing supplier reference, back from https://github.com/PrestaShop/PrestaShop/pull/618 thanks @EvaldasUzkuras
[-] Installer: update leftcolumn alias to enable live_edit on blockmyaccount
[-] INSTALLER : Errors in upgrader
[-] INSTALLER : Fix SQL warnings when upgrading
[-] INSTALLER : fix bug when updating add_new_tab not defined
[-] INSTALLER : Remove warnings
[-] Installer: Fix some sql queries
[-] INSTALLER : Shown index can return empty array
[-] INSTALLER : Prevent crash when populating data, MACOSX OS creates hidden files
[-] INSTALLER : Fix bug #PSCFV-8813 1.4.7.0.sql not uptodate
[-] INSTALLER : Fix bug #PSCFV-8813 missing file PHP:setAllGroupsOnHomeCategory();
[-] INSTALLER : Create reinsurance_lang when updating from below 1.5.0.13
[-] INSTALLER : SQL error during upgrade from 1.5.0.13
[-] INSTALLER : SQL error during upgrade from 1.5.0.9
[-] INSTALLER : Fix bug #PSCFV-8605 loop on ressource wether than n array
[-] INSTALLER : Fix bug #PSCFI-7075 too short column in PREFIX_webservice_account
[-] INSTALLER : Fix bug #PSCFV-8605 first part, do not affect memeory limit when upgrading if set to -1
[-] INSTALLER : Fix bug #PSCFV-8750 do not activate disabled module during upgrade
[-] FO : fixed bad search redirection #PSCFV-10158
[-] FO : FixBug Missing PS_STOCK_MANAGEMENT smarty variable
[-] FO : fixed html tags that should not appear in blockcategories
[-] FO: Fix quantity discount table display for non default attribute #PSCFV-9942
[-] FO : FixBug #PSCFV-10058 - Missing required form fields in address format
[-] FO : FixBug #PSCFV-10090 urlencode syntax error - Thanks Duarte
[-] FO : FixBug #PSCFV-10058 Invalid id country after allow to select no country
[-] FO : FixBug CGV does not pop-up in Fancy Box
[-] FO : FixBug generated_date error
[-] FO : input token missplaced in address.tpl
[-] FO : Do not redirect on 301 when POST request
[-] FO :ProductSale::getBestSales() by modified date renders SQL error, thanks @SebSept
[-] FO : expiration date not displayed in email for downloadable product
[-] FO : FixBug No warning message when no carriers available from advanced stock management
[-] Fo : Bad date format in order-detail, merge from https://github.com/PrestaShop/PrestaShop/pull/476 thanks @gbelorgey
[-] FO: fixed bug shopping cart price misplaced - #9971
[-] FO : Fix bug #PSCFV-9856 could not add Uncombinable cart rules and Minimum amount check badly calculated
[-] FO : Fix bug #PSCFV-9993 could not see product quantity in pack content
[-] FO : Fix bug #PSCFV-9847 Cart Rule not updated when address is updated on Checkout Page
[-] FO : FixBug #PSCFV-9846 Bookmark title escape problem on special language
[-] FO : FixBug #PSCFV-9766 All products in products list for email confirmation with multi-shipping
[-] FO : FixBug Wrong offset in more than one shipping address
[-] FO : FixBug #PSCFV-9961 Remove wishlists icon
[-] FO : FixBug #PSCFV-9951 Syntax error - Thanks to Oleacorner-Olivier B
[-] FO : Force browser language detection in Tools::setCookieLanguage
[-] FO : FixBug #PSCFV-9879 Email confirmation message not present
[-] FO : Prevent unsassigned category id, thans @PrestaCaptainFLAM
[-] FO : fixed pagination for p = 0 #PSCFV-9746
[-] FO : Removed useless live edit query #PSCFV-9845
[-] FO : FixBug of total products from supliers and manufacturer
[-] FO : FixBug #PSCFV-8018 All products was counted in manufacturer lsit even if products was set as hidden
[-] FO : FixBug #PSCFV-8018 All products was counted in manufacturer list even hidden products
[-] FO : FixBug #PSCFV-7723 Bad manufacturers list pagination
[-] FO : fixed group query for cart rules #PSCFV-8992
[-] FO : Fixed partial use of cart rules which does not offer free shipping #PSCFV-9216
[-] FO : Fix bug #PSCFV-9662 udpate payments means after delete thanks @maofree
[-] FO : Fix bug #PSCFV-9754 do not use back url on cart summary link in steps
[-] FO : fixed useless error when the product id in the URL is not an int #PSCFV-9726
[-] FO : Fix bug #PSCFV-9021 : bad category id for breadcrumb on product when url rewrite is on
[-] FO : you cannot access the front office with a disabled language anymore #PSCFV-9714
[-] FO : fixed bad condition in the dispatcher rules
[-] FO : Fix bug #PSCFV-9653 could not return a custom product
[-] FO : could not see old_price_display when specific price on one combination
[-] FO : Bad specific price for a combination // sorry
[-] FO : Bad specific price for a combination
[-] FO : Fix bug #PSCFV-9355 dleete button missing for custo in blockcart
[-] FO : Fix bug #PSCFV-9669, update total price on order-payment
[-] FO :Fix bug #PSCFV-9650 could not see delete href in block cart
[-] FO: OrderHistory - Unclosed tag
[-] FO : added smarty cache to blockcms
[-] FO: Fix #PSCFV-9325 all was included on 301 for root deprecated controllers
[-] FO : fixed remove button for free product in the cart block #PSCFV-8465
[-] FO : fixed entities issue in javascript alerts #PSCFV-9001
[-] FO : fixed bug #PSCFV-9388 - newsletter is required error, showing two times
[-] FO : Fix bug #PSCFV-8412 no zipcode for countries when default country has no zip code in adress format
[-] FO : fixed bug #PSCFV-7454
[-] FO : Css fix on first address and avaibility
[-] FO : Fix one_phone_at_leastphone again when PS_REGISTRATION_PROCESS_TYPE = 1 && PS_ORDER_PROCESS_TYPE =0
[-] FO : fixed bug #PSCFV-9007 - Best sales query has ambigious column when sorted on date_add
[-] FO : Fix #PSCFV-9414 submitGuestAccount is not submitAccount
[-] FO : #PSCFV-9532 remove hardcoded unidentified group number
[-] FO : Fix bug #PSCFV-9525 escape double quote in address formated fields
[-] FO : Fix #PSCFV-7388 again Instant checkout - State validation
[-] FO : fixed alternative row color on shopping cart summary #PSCFV-9208
[-] FO: Fixed bug PrestaShop 1.5.4.1 Catalog Mode Display Incorrect Header (mis-aligned) - #PSCFV-9327
[-] FO : fixed pdf template #PSCFV-9430
[-] FO: Fix shop restriction on features #PSCFV-7848
[-] FO : fixed bug #PSCFV-9092 - conflict on the company field during account creation
[-] FO: fixed w3c errors
[-] FO: solved some W3C errors
[-] FO: some W3C errors corrected
[-] FO: Fix no image displayed for products in the cart when it was added from another store in multishop #PSCFV-9385
[-] FO : In stock sort is now removed when Stock managment is disabled on default theme. Not to be confused for my pull #465, which was for default mobile theme. This is for the default regular theme.
[-] FO : Report of #PSCFI-7240 typos in cms.tpl
[-] FO: http page should be redirected to http when accessed with https #PSCFV-9212
[-] FO: Fix Category::getSubCategories() default group used #PSCFV-9356
[-] FO: Fix Order::getOrdersTotalPaid() reference is now a string #PSCFV-9342
[-] FO : In stock is now removed when Stock managment is disabled Fixes the bug where Stock managment is disabled, it stil show "In Stock" in the sort by list. Added $PS_STOCK_MANAGEMENT to line 64.
[-] FO: Fix Carrier::getDeliveredCountries for multishop #PSCFV-9279
[-] FO : Fix bug #PSCFV-9171, can not order with a unactivated country
[-] FO: Tools::getMediaServer() should return Tools::getShopDomain() instead of Tools::getHttpHost() #PSCFV-9217
[-] FO : first_item class don t exist if shopping cart have only one item if shopping cart have only one product, last_item class exist but not first_item because of "else if" after if isset($productLast)
[-] FO: Fix #PSCFV-9057 close output buffer before sending attachment and virtualproducts
[-] FO : Fix bug #PSCFV-8967 large image instead of thickbox when one image
[-] FO: fixed bug: Solved a javascript problem on the new 1.5.4.1 with the full image on product page - PSCFV-8967
[-] FO: improve some css for RTL language
[-] FO: replace logo on the left (fixed bug RTL language - #PSCFV-8891)
[-] FO : Jqzoom must be enabled to add class jqzoom
[-] FO : removed misleading label on the shipping total #PSCFV-8556
[-] FO : fixed truncate and entities in the cart block #PSCFV-8870
[-] BO : fixed bug when save carrier without range
[-] BO: Fix multishop association for tax rules group - #PSCFV-9967
[-] BO : fixed bug #PSCFV-10169 - now you can go backward from step 3 to 2 when no ranges are set
[-] BO : fixed bug #PSCFV-10073 - now you can upload carrier logo on windows
[-] BO: Delete from attribute_shop when an attribute group is deleted #PSCFV-9902
[-] BO : FixBug #PSCFV-10075 remove product attribute image association on delete product attribute
[-] BO : FixBug Preview product url
[-] BO : fixed bug #PSCFV-9782 - live edit bug with multistore
[-] BO : fixed range deletion when press enter on input 'all' on carrier wizard
[-] BO : FixBug #PSCFV-7571 Error checking available product quantity
[-] BO : FixBug update received quantity in suply order
[-] BO : fixed bug #PSCFV-10111 when carrier is free don't display ranges in summary
[-] BO : Added comprehensive error display when prestashop cannot write the .htaccess file
[-] BO :FixBug Suppliers and Warehouses accordion
[-] BO : fixed bug #PSCFV-10096
[-] BO : fixed bug when carrier is free and change shipping method
[-] BO : fixed bug #PSCFV-10091 - you can now enable all zone in one clic
[-] BO : fixed bug #PSCFV-10033 - disable next step if no range has been added on carrier wizard
[-] BO : fixed multistore thumbnail on product list
[-] BO : FixBug root category listed after list reset
[-] BO : Fix additional quote in live edit template
[-] BO : list of carriers should only contain the active one in AdminProducts
[-] BO : OrderSlip now correctly displays the order slip date, thanks @Jacky75
[-] BO : Do not display root category bool if addrootcategory not in url
[-] BO : Fix send e-mails updating tracking number Hi, We've fixed some bugs parameters about the Send function of Mail class in the AdminOrdersController.php. Regards, Massimo.
[-] BO : FixBug Multiple list pagination error.
[-] BO : FixBug Manufacturer multilist pagination, filter, order problems and manufacturer address filter exception
[-] BO : FixBug #PSCFV-8311 pagination, filter and order with multilist
[-] BO : Fix bug #PSCFV-8139 bad renderform on errors in AdminStatuses
[-] BO: Fix #PSCFV-9885 catalog price rules edition
[-] BO : FixBug #PSCFV-7839 No invoice file attached to payment email confirmation
[-] BO : Fix warning in AdminAttributesGroups after https://github.com/PrestaShop/PrestaShop/pull/392
[-] BO : FixBug #PSCFV-7824 No total tax not show in order email confirmation
[-] BO: FixBug #PSCFV-10005 Filter on COUNT field
[-] BO : Fix bug #PSCFV-9990 bad count on list header helper
[-] BO : FixBug #PSCFV-9859 Carriers free shipping inline edit
[-] BO : FixBug #PSCFV-9748 Missing confirmation and update button problem
[-] BO : fixed domain warning
[-] BO : FixBug Install currency on Localization Pack
[-] BO : FixBug Invalid offset when only one error in layout
[-] BO : Fix onchange event on Adminmodules list execption
[-] BO : Fix onchange event on adminmoudlue list execption
[-] BO : FixBug allow_url_fopen on BackOffice home page
[-] BO : fixed bug #PSCFV-9809 - carrier wizard tab access fix
[-] BO : FixBug #PSCFV-9959 file_get_contents error
[-] BO : Fix while of translation, to find in folder if translation exists
[-] BO : FixBug #PSCFV-9965 currency not active by default in Localization pack
[-] BO : fixed some bug on carrier wizard - added tabindex on input - new default carrier img
[-] BO : doesn't match available_fields of AdminImportController - Correct wrong position of available_fields - Add some of available_fields
[-] BO : fixed input action when set fees for all zones in carrier wizard
[-] BO : FixBug #PSCFV-9895 Mal function in products suppliers accordion
[-] BO : FixBug Impossible to remove available date from product attribute
[-] BO : FixBug #PSCFV-9042 Supply orders now accept 0 value to automatically load products
[-] BO : FixBug #PSCFV-9839 Update product warehouse on suply order - thanks @O'Donnell
[-] BO : FixBug #PSCFV-9894 undefined quantity_all_version variable in product.tpl
[-] BO : Fix SQL query when $join_category == false, pull request https://github.com/Captain-FLAM/PrestaShop/commit/d5f75c63b6e21dd87c77a027bf8dd293afb1a94f thanks @Captain-FLAM
[-] BO : Could not find cover when image table corrupted
[-] BO : FixBug #PSCFV-9881 Remove updateCarriersList on zip code blur
[-] BO : FixBug #PSCFV-9878 Wrong login tab order
[-] BO : FixBug #PSCFV-8060 Error getting last quantity and price in stock mouvement
[-] BO : FixBug #PSCFV-8237 Javascript Error setting default supplier
[-] BO : FixBug #PSCFV-9138 Error duplicate product group reduction
[-] BO : FixBug #PSCFV-9251 Meta Tag delete previous
[-] BO : FixBug #PSCFV-9049 Bad actionOrderSlipAdd hook description
[-] BO : FIxBug Correct image language in product
[-] BO : fixed sort by currency exchange rate #PSCFV-9840
[-] BO : If no nb, get default 8, not 10.
[-] BO : translation copy is now easier #PSCFV-8886
[-] BO : FixBug #PSCFV-5316 Translation problem in delete button link
[-] BO : FixBug #PSCFV-6140 Pagination link error
[-] BO : FixBug #PSCFV-9723 Exporting quantity in instant stock was not returning all rows
[-] BO : FixBug #PSCFV-8234 Products tags not correctly indexed in search
[-] BO : Bad return value for AdminCountries::processStatus()
[-] BO : FixBug Directory Separator on URL
[-] BO : FixBug #PSCFV-8217 Shop logo image not refresh after change
[-] BO : FixBug #PSCFV-9613 Fix product tax to be shop dependent
[-] BO : FixBug #PSCFV-8287 Breadcrumbs label was wrong
[-] BO : FixBug #PSCFV-8229 Default country value set to manufacturer country Default country value set to manufacturer country Click on manufacturer address line now redirect to manufacturer address edition
[-] BO : FixBug #PSCFV-6365 Missing message confirmation for Images modification in Preferences > Images
[-] BO : Fix bug #PSCFV-9722, do not propose adding root categories in categories when there is only one shop
[-] BO : Use only 0% reduction from category in group
[-] BO: Fix tax rule edition - unique tax rule can't be edited
[-] BO : Fix bug #PSCFV-9395 Missing vertical separation between flags
[-] BO : Fix Bug #PSCFV-9550 Bad URL redirection
[-] BO : Fix bug #PSCFV-9310 bad type for input in helper thankx @Piotr Moćko
[-] BO: Delete specific price after combination deletion && fix SpecificPrice::getByProductId() sql query
[-] BO : fixed charts and grids in multishop #PSCFV-8978
[-] BO : you can now have different mail topic for one mail template #PSCFV-9617
[-] BO : added checks on product attributes properties #PSCFV-9703
[-] BO: display vat number field should not depends of the vatnumber module #PSCFV-9672
[-] BO : products comments impossible if quantity > 0 The pull request https://github.com/PrestaShop/PrestaShop/pull/219 makes the module not working properly in v1.5.4.1. Indeed, after this change, the OosHook works as expected but now, as the product comments module is attached to the OosHook, comments information is only shown when the product is out of stock!
[-] BO: product supplier price should not be converted on product page #PSCFV-9420
[-] BO : Fix bug #PSCFV-8666 COD module association no more deleted when restrition on other currency
[-] BO : Fix bug #PSCFV-8619 update order weight when modifying products
[-] BO : fixed bug #PSCFV-9622
[-] BO: remove old icon into New Version block
[-] BO: Fix manufacturer addresses duplication #PSCFV-9601
[-] BO : fixed translation and languages issues
[-] BO : fixed addslashes on tpl translations (compatibility between "slashes" and "js" parameters) #PSCFV-9427
[-] BO : fixed bug #PSCFV-9586 - Unable to sort CMS page in back office
[-] BO: Fix #PSCFV-9455 stock was resetted if adv stock management is enable and product preference is submited on shop context
[-] BO : Fix warnings when product not available in Shop
[-] BO : fixed bug #PSCFV-7921 - Language selector (with flags) cant be translated
[-] BO : fixed bug #PSCFV-7634 - Add non-existent new product to order using autocomplete gives javascript error (data.products is not defined)
[-] BO: This is now not possible to move a tab with id_parent = 0 to an another tab
[-] BO : Fix bug #PSCFV-7353 can not see the thumb for a scene
[-] BO : Fix bug #PSCFV-7353 can not see the thumb for a scenes
[-] BO : remove "utm_*" rules preventing Google services from indexing the shop Google shopping refuses all products having their URL blocked by the robots.txt file
[-] BO : allow partial use for credit slip vouchers #PSCFV-9539
[-] BO : Fix bug #PSCFV-9264 bad cancel qty when refund / return
[-] BO : missing colspan after update product detail
[-] BO: Stock should not appears on product listing when stock management is disabled #PSCFV-8207
[-] BO: fixed bug button on module list
[-] BO: fixed bug #PSCFV-9463 + improve some css on BO menu
[-] BO: fixed bug #PSCFV-9461
[-] BO: fixed bug #PSCFV-7440
[-] BO : fixed quote issue with magic quote in customization in adminorders #PSCFV-9311
[-] BO : fixed parsing of discount value in AdminOrders #PSCFV-9481
[-] BO : Upload image name with trailing slash in name
[-] BO : fixed ajax in permissions tab #PSCFV-7442
[-] BO : fixed bug #PSCFV-9405 - Delete file of downloadable product when cancel
[-] BO : Fixed permission update #PSCFV-7441
[-] BO : postcode required in manufacturer address
[-] BO : fixed link in AdminTracking #PSCFV-7409
[-] BO : fix require path to config.inc.php
[-] BO: Fix #PSCFV-8904 bad id_warehouse is stored on ps_address table
[-] BO: association of product attributes on associating a product to another shop #PSCFV-8735
[-] BO: Fix #PSCFV-9428 features duplicated with multishop on Feature::getFeatures()
[-] BO: Fix #PSCFV-7763 Re-inject quantities after deleting a product from a order
[-] BO: Addresses are now totally deleted from the database if not used on a order
[-] BO: Fix #PSCFV-6657 translations of overriden admin templates
[-] BO : Fix bug #PNM-788 Loyalty points in adminCustomers when only one order
[-] Bo : Fix #PSCFV-9306 report of #PSCFI-7115 Add a new specific price = faulty validation
[-] BO: Fix combinations duplication on multishop with context all for the product duplication #PSCFV-9020
[-] BO : Report of #PSCFI-6790 REQUEST_URI badly recorded
[-] BO : Fix bug #PSCFI-7231 strtolower iso_lang for package download link
[-] BO : Fixed unregistered version field for some modules
[-] BO: Fix language deletion with multishop when shops still associate to the language #PSCFV-9244
[-] BO : fixed bug #PSCFV-9178 - is_color_group is not inserted correctly
[-] BO : Fix bug #PSCFI-6755 "+" in email
[-] BO: Fix PHP warning on orderslip generation without ecotax #PSCFV-8743
[-] BO : remove deprecated parameter when call Tools::displayDate()
[-] BO : remove deprecated parameter when call Tools::link_rewrite() part 2
[-] BO : remove deprecated parameter when call Tools::link_rewrite()
[-] BO : Fix #PSCFI-7186 incorrect return in Meta->deleteSelection()
[-] BO: Root category should be the shop category and not the higher category with multiple root and without multishop #PSCFV-8860
[-] BO : fixed gift deletion when there is no products anymore in the cart
[-] BO: Fix listing exports with image or other empty fields
[-] BO : catch prestashop exception and display smart error messages #PSCFV-9147
[-] BO : fixed issue with reduction in the category for groups #PSCFV-9101
[-] BO : Fix "The controller adminnotound is missing or invalid." error when no controller get variable
[-] BO: Ajax Confirmation / padding-left
[-] BO : fixed turkish characters replacement #PSCFV-8968
[-] BO : fixed potential warning with texture list #PSCFV-9050
[-] BO : tab cache wasn't emptied on delete #PSCFV-9053
[-] BO: You can now disable the email sent after account creation
[-] BO : don't show unecessary tpl module translations - complience with documentation
[-] BO: Fix #PSCFV-8179 shop domain used in emails sometimes was for the wrong shop
[-] BO : don't show translation for class/controler overrides when on modules translation page
[-] BO : fixed infinite loop in the categories #PSCFV-8965
[-] Bo : Admin login loop under Firefox
[-] BO : fixed image import with allow_url_fopen deactivated #PSCFV-8181
[-] BO : bug in BO translations when Windows OS [-] BO : bug in BO translations when Windows OS Impossible to translate the strings of the back office in the directory override/controllers/admin/... under windows environment. The statement " $parent_class = explode(DIRECTORY_SEPARATOR,..) " returns wrong result under windows environment. because the path name has '/' and '\' chars. $parent_class contains bad values and the string "override" is not found.
[-] BO: Fix #PSCFV-8957 order creation when id_cart=0 is present in database but should normally not happen
[-] BO : fixed automatic creation of email overrides in the template #PSCFV-8785
[-] BO : fixed error message in language form #PSCFV-8890
[-] BO : fixed bug #PSCFV-7411 - Store location problem with some longitude values
[-] BO : Fix bug #PSCFI-7141, wrong quantity and sales number in Product Sales, thankx to @Tuan Tran
[-] BO : Fixed display when you translate modules without theme selected
[-] Classes : fix memcache ext #PSCFV-5225 thanks @up2date
[-] Classes : ModuleFrontController updated. Thank you @codeurWeb
[-] Classes : ModuleFrontController & templates overrides fixed
[-] Classes : Bug fix Validate.php - Error with $mail_name
[-] Classes : SwiftMailer - Fix deprecated preg_replace (PHP 5. 5.0)
[-] Classes : fixed cachefs and memcache classes #PSCFV-5225 thanks @prestalab
[-] Classes : Mail - check instance of link in the context
[-] Classes : Db : Fixed $link
[-] Classes : Db classe fixed (check InnoDB support MySQL >= 5.6)
[-] Core: Fix language link with multishop from another shop #PSCFV-10063
[-] CORE : Do not delete index.php in smarty cache or /img/tmp/
[-] Core: Fix #PSCFV-8887 - improve performance of search indexation
[-] CORE : Fix bug #PSCFV-8542 could not have rewrited link for modules in blocklanguage
[-] CORE : getModuleLink not working on module custom route, merge from https://github.com/PrestaShop/PrestaShop/pull/487 thanks @zimmi1
[-] CORE : Addslashes on not translated strings for javascript js=1
[-] CORE : Fix for field validation in ObjectModel::validateFieldsLang() when default lang value not set, thanks @rimas-kudelis
[-] CORE : Cast product price to float instead of int when adding supplier reference, thanks @rimas-kudelis
[-] CORE : Merge from PrestaEdit last pull request again
[-] CORE : Fix warning #PSCFV-9678 when sending message to customer
[-] CORE : Fix bug #PSCFV-9572 when seizing in 0 in forms input fields for objects
[-] CORE: Copy live_edit bool when register alias hook
[-] CORE: No category in url preview on BO product page
[-] Core: ObjectModel::toggleStatus should change only active field on multishop with global context #PSCFV-9707
[-] Core: Fix #PSCFV-9652 too much payments for multishipping orders
[-] CORE : fixed bug #PSCFV-8745 Contact form e-mail template with incomplete information
[-] CORE : fixed bug #PSCFV-9460
[-] CORE: Fix bug #PSCFV-9474 missing unity and unit_price_ratio in Cart::getProducts
[-] CORE : fixed #PSCFV-7451 - error in classes Carrier
[-] CORE : Report of https://github.com/PrestaShop/PrestaShop/pull/504 Thanks @aseques
[-] CORE : CartRule::checkProductRestrictions : A gift product in the same category as its restrictions causes the gift to stay in the cart even if emptied
[-] CORE : fixed bug #PSCFV-9121 - virtual product does not have link after upgrade - part 2
[-] CORE : fixed bug #PSCFV-9121 - virtual product does not have link after upgrade
[-] Core: Hook actionPaymentConfirmation should also be called for PS_OS_WS_PAYMENT order statuse
[-] CORE : Report of https://github.com/PrestaShop/PrestaShop-1.4/commit/ec8deb289185daa03cd11d239797bbe5bdbaecd0
[-] CORE : Report of https://github.com/PrestaShop/PrestaShop-1.4/commit/a6e8a2eda7fe3bab5245df9b98df7b2f6f7d541f
[-] Core : fixed URL regexp #PSCFV-8986
[-] Core: Fix StockManager::getProductRealQuantities() per warehouse with some orderstatuses #PSCFV-9219
[-] CORE: Fix #PSCFV-9185 Wrong product price display on list by manufacturer Added default_on condition on getProducts() query in Manufacturer class.
[-] CORE : Fix bug #PSCFI-7168 cast and truncate POST values for statistics.php controller
[-] CORE : TRACKING_DIRECT_TRAFFIC not respected
[-] CORE : referer keywords truncated before insertion in connections table
[-] CORE : Fix bug #PSCFI-7072 redundant configuration get
[-] Core: Fix StockManager::getProductRealQuantities() for refunded quantities on non delivered orders
[-] Core: Fix specific prices if they are configured to count quantity per product and not per combination
[-] CORE : fixed PHP Notice: Undefined index: date_expiration on virtual product
[-] MO : fixed smarty cache on blocksearch #PSCFV-8739
[-] MO : multilines translations does not work #PNM-1645
[-] MO : sendtofriend FixBug Form error
[-] MO : fixed potential warning in pscleaner #PSCFV-10070
[-] MO: no more 1.4 support for blocklayered
[-] MO : fixed bug #PNM-792 : remove unused js file in blocklayered
[-] MO : fixed category link on blocklayered #PNM-1427
[-] MO : blocklayered also try to find the translations in the translations directory
[-] MO : added `visibility` IN ("both", "catalog") in blocklayered
[-] MO : fixed module upgrade with common version number
[-] MO: cover image issue with layered block on multishop, thanks @theginie
[-] MO : My account column block should not display module icon in list
[-] MO : blocktopmenu should clear cache when adding a new subcategory
[-] MO : Missing image in my account for MODULE WishList
[-] MO : mod='blockmyaccount' missing in blockmyaccountfooter.tpl
[-] MO : mod='blockmyaccount' missing in blockmyaccountfooter.tpl (translation doesnt work), thanks @mypresta-eu
[-] MO : Fix sort order for combinations, report of pull request https://github.com/PrestaShop/PrestaShop/pull/364
[-] MO : blockviewed Fix bug adding last product to list, thanks @kluevandrew
[-] MO : Fix bug discount display in mail, manual merge from https://github.com/202-ecommerce/PrestaShop/commit/1d5df338c46aef723d13aef3e213792df6ea92e2
[-] MO : fixed disappearing form in sekeyword #PSCFV-9743
[-] MO : Followup : don't send emails for empty carts thanks @axometeam
[-] MO : fixed bad redirection in trackingfront #PSCFV-8378
[-] MO : Bug fix - PS Cleaner, check if module favoriteproducts is installed. Fix Bug when favoriteproducts is not install.
[-] MO: exec hook on hook registration #PSCFV-8977
[-] MO : fixed bug #PSCFV-5724 - 1.5.2.0 cms block error when adding more than one column to the categories block in the footer
[-] MO : fixed bug #PSCFV-8654 - 1.5.4.0 My Favorites doesn't add product
[-] MO : fixed bug #PSCFV-9040 - Block CMS Multishop bug
[-] MO : fixed bug #PSCFV-8910 - Productcomments module allows post only one comment per product
[-] MO : do not check the VAT number if the module is disabled #PSCFV-9397
[-] MO : removed doubled "/" in homeslider template #PSCFV-9439
[-] MO : fixed editorial issue when the entity does not exist yet for a shop #PSCFV-9442
[-] MO : do not truncate order return state in pscleaner #PSCFV-9431
[-] MO : loyalty small smarty fix #PNM-1305
[-] MO : Fixed double creation of vouchers in loyalty and some redirections #PNM-1317
[-] MO : Followup : Don't send followup vouchers to guest accounts
[-] MO : Followup : Don't execute crontasks if the module is disabled
[-] MO : Report of #PNM-1413 when alert already set on default combination
[-] MO: Fix newsletter module mail like newsletter_voucher.html - Edit html/css/translation for newsletter_conf.html and newsletter_verif.html - Use {color} variable
[-] MO: Fix sendtoafriend module #PSCFV-8340 http://code.google.com/p/jquery-json/issues/detail?id=43
[-] MO : Remove link "Notify me when available" when in stock
[-] MO: Fix double html entities on link edition in the blocktopmenumodule #PSCFV-8808
[-] MO: Don't make unnecessary request to ajax cart
[-] MO: Fix #PSCFV-8973 product images in the blockviewed module
[-] MO : Fix bug #PSCFI-7055 do not relay on ".html" in referer to find previous category
[-] MO: blockcart ajax cart product insert missing html class Added the same HTML class as the other product names have in the ajax cart. Perhaps it would be nice to add an added_from_ajax as well in case you would want to differ between the newly added items and previously added ones? Another potential issue is on line 445 where there is no space after the insert. If Prestashop is set to minify the normal page, this is correct, otherwise there will be a space missing.
[-] MO : fixed hug #PSCFV-8994 - clear cache when truncate catalog
[-] MO : fixed bug #PSCFV-7703 - Images for bank wire, cheque and cash payment missing on Order Summary
[-] WS: Fix retrieve of stock_availables when stock is shared on the shop group
[-] WS: add id_address_delivery on cart products association
[-] WS: Sanity check before creating packs As it is before this commit, every product that is created from the schema without removing the empty bundle item in the schema will become a pack containing one broken item. Sorry, this bug was introduced by my previous pull request.
[-] WS: Enable feature request #PSCFV-5581, thanks @codl for pull request #593
[-] WS: do not escape shop name overzealously
[-] WS : fixed ?schema=blank (performance issue)
[-] WS: Fix accessories duplication on product update
[-] WS: Fix webservice sort for multishop fields #PSCFV-5634
[-] WS: Fix #PSCFI-7009 product prices on orders with specific prices
[-] WS: Fix deletion of product_features on product update #PSCFI-6740
[-] WS: Fix memory leak when getting synopsis
[-] PDF : Fix columns error
[-] PDF : Fix dejavusans font for en lang
[-] TR : fixed missing space in RMA PDF
Improved/changed features:
[*] Installer : added cookie mode instead of session for the installer
[*] Installer: you can now choose to send an email to the administrator after installation with php-cli
[*] Security : deny access to this folder as already done for classes
[*] FO : added chinese/japanese search
[*] FO : Add reference sort to theme
[*] FO : Blur for tab navigation, followup a0ee3d3, thanks @Seynaeve
[*] FO : Blur for tab navigation, followup a0ee3d3c34b7fc5d149228197be382af59a49e47, thanks @Seynaeve
[*] FO : Fix bug #PSCFV-9611, autocomplete to off on opc page and other pages
[*] FO : updated Fancybox plug-in
[*] FO : a few more SQL improvements
[*] FO : lots of performance improvements (removed or merged useless SQL queries)
[*] FO: display Error500 if no database access Sometimes, we have some problems with the MySQL Database and a Fatal Error is done. With this, we show the error500 template.
[*] FO : getCatImageLink doesn't work without type thanks @axometeam
[*] FO : Retrieve invoice address in OPC + guest checkout, thanks @Piotr Moćko
[*] FO : Fix bug #PSCFV-9440 add another address in guest checkout in OPC
[*] FO : removed code specific to multishipping from the no-multishipping process
[*] FO : added smarty cache on productscategory
[*] FO : added smarty cache on crossselling module
[*] FO : improved entity links retrieval (no need to instanciate an object when there is no need... to instanciate un object)
[*] FO : added smarty cache to blockspecials
[*] FO : added smarty cache on blockbestsellers
[*] FO : added smarty cache on homefeatured module
[*] FO : added smarty cache on blocknewproducts
[*] FO: Don't make useless ajax requests to blockcart on the cart page
[*] FO : AuthController can now have its own template
[*] FO: use Tools::fileAttachment() in ContactController
[*] BO: Warehouse name is now displayed on each product line orders
[*] BO : Clear smarty cache when submitting SEO rules
[*] BO : Add clear smarty cache button
[*] BO: Add reference to Options
[*] BO: Add reference to FrontController
[*] BO : Do not insert duplicates in product_carrier, thanks @edamart
[*] BO : Do not insert duplicates in poruct_carrier, thanks @edamart
[*] BO : Add filter choices in title of List, thankx to @ccauw
[*] BO : refact for modules exeptions regarding https://github.com/PrestaShop/PrestaShop/pull/614
[*] BO : Fix statistics redirection when change date When going into a special stats module (for exemple "statsproduct") if you change the date, Prestashop redirect to the "home" of statistics.
[*] BO : shipping enlarge listbox carriers enlarge listbox carriers to see all the name of the carrier
[*] BO : skip the first line by default All sample csv file use a first line of information
[*] BO : Proposition : IMPROVEMENT Admin Modules Positions You can see in action over there : http://www.youtube.com/watch?v=e7KXuCU3RIM
[*] BO: Add an option to allow iframes on descriptions
[*] BO : #PSCFV-8498 You can now use 0% in groups category rules in order to not apply discount on this category
[*] BO : Not increment stock if statut change fom Error to Canceled Not increment stock if statut change fom Error => Canceled or Canceled => Error (stock should stay the same). Add a code simplification too
[*] BO : Correct the getList() request for quantity and id_product Quantity and Id_product should be fixe as Int, else the Mysql request do something like : quantity LIKE "%0%" When an admin key-in quantity as 0, he want product with quantity as 0, not as 0 / 10 /20 / 30... ect (The same for id_product)
[*] BO : improved unicode characters replacement in URLs
[*] BO : Fix #PSCFV-8504 carrier on invoice and delivery slip
[*] BO : Correct Request Sql Manager validate options Correct Request Sql Manager validate options : - No size limit for the request - cutJoin() doesn't work for multiple Join (exemple : LEFT JOIN `XXX ON XXX AND XXX) => Then you can't save the request, even if it work
[*] BO : AdminControllers : Keep active filter on pagination
[*] BO: more than one image in HelperForm
[*] BO : Reselect current step in AdminOrders
[*] BO : Enable current subtab active class
[*] BO : attributes taken into account for the language entity in the localization packs
[*] BO: use Translate::getAdminTranslation instead of translate()
[*] BO: hook displayAdminForm / add param fieldset
[*] CORE : Allow external css loading, manual merge of https://github.com/PrestaShop/PrestaShop/pull/406 thanks @m-hume
[*] CORE : Fix bug #PSCFV-9811 doc on display404Error
[*] Core: that is now easier to get links for another shop
[*] Core : Smarty updated from 3.1.13 to 3.1.14 (cache issues fixed)
[*] CORE: can not delete class_index.php
[*] Core: you can now pass a query string with php-cli which will merged with for cronjobs and other things
[*] MO : added manufactureres order by name, thanks@Jacky75
[*] MO : Templates overrides works with the new structure (/views/templates/admin|front|hook)
[*] MO : Added customer and product object to hook sending email
[*] MO : added configuration cleaning to pscleaner
[*] MO : you can now exclude IP addresses from the online visitors module #PSCFV-9056
[*] MO : pscleaner reset employees notyfications pscleaner afetr truncating orders, messages and customers reset also employees notyfications
[*] MO : blocklayered optimization
[*] MO : Followup https://github.com/runningz/PrestaShop/commit/040ff3396ac32a1cc35d4d2464e8d36486cac418
[*] MO : blockcart - simpler selectors
[*] MO: Add smarty cache on blocksupplier and blockmanufacturer
[*] MO: blockcart animation optimization The animated element would not be removed upon the animation being finished. This made the site slow and unresponsive if the animated image was heavy (eg. a transparent png) and added to cart many times without reloading the page. This addition makes the animation behave as expected also when performing it multiple times.
[*] WS : order history add(POST) send customer email if sendemail=1 url parameter, thanks @gerdus
[*] WS : improved performances
[*] WS : improved web service performances
[*] PDF : Free shipping in invoice PDF display X2 thanks @axometeam
[*] PDF : Small column width fix
[*] TR : Added 10 new localization packs
[*] LO: Improved Argentina Localization Pack
[*] LO : corrected Israel standard tax rate
[*] LO : Fixed units in Belgium localization pack
[*] LO : Fix PSCFV-9330 (decimals=2)
[*] LO : Updated it & nl localization files
Added Features:
[+] BO: Add a wizard to create and edit your carriers
[+] BO: Addition, deletion and edition are now logged
[+] BO: Fix Bug Progress Bar Upload Image Product Lorsque l'on ajoute des images a des produits, la barre de progression s'affiche en dehors de son cadre. "position:relative" n'est pas présent pour "div.progressBarImage" dans le fichier admin.css . ---- When we add pictures to products, the progress bar is out of his wrapper. "position:relative" is missing for "div.progressBarImage" in admin.css file.
[+] CORE : new jquery UI version (1.10.3)
[+] TR: Created file structure for Dutch installer
####################################
# v1.5.4.1 - (2013-04-25) #
####################################
Fixed bugs:
[-] Installer: installer now work even if no settings.inc.php file is created with an installer session already here
[-] Installer : do not select activity if not defined
[-] INSTALLER : add counter loop in update_order_messages
[-] Installer : Fix bug #PSCFV-8606 bad performance when updating messages
[-] INSTALLER : fix bug #PSCFV-7688 mailalert_customer_oos not existing in database
[-] Installer: fix installer in PT languahe
[-] Installer : Missing directory separator when upgrading images types
[-] Installer: Switch test of session.save_path to optional test
[-] INSTALLER : Fix bug, can not check rights on theme folders
[-] INSTALLER : Fix bug #PSCFV-8167 duplicates product_sqlstock INDEX
[-] FO : do not use dispatcher routes for static files
[-] FO : invoice: do not display taxes table if there is not tax to display
[-] FO : Fixed product comparator CSS
[-] Fo : Remove additionnal space in phone field value
[-] FO : fix bug #PSCFV-8684, phone not required in guest checkout when not set in BO
[-] FO: send current product to some hook like displayProductTabContent on product page #PSCFV-8825
[-] FO : Fix bug #PSCFV-8728 context country not updated after changing delivery address in OPC
[-] FO: fixed some css bug for ie7
[-] FO: Add the protocol content to the cache id of modules #PSCFV-8810
[-] FO : empty cache getContextualValue_ when updating cart quantity
[-] FO : Disable confirm order when already clicked
[-] FO : address alias lost
[-] FO : Undefined free_shipping in POC when updateQty
[-] Fo : Fix big pic alt with jqzoom
[-] FO : Class free order name for validateOrder
[-] FO : First part of fix #PSCFV-8636, cart rule on specifice carrier / all carriers
[-] FO : Fix bug #PSCFV-8623 : Cart rule without code is applied automatically
[-] FO : add cart rul when cart rul has several groups
[-] FO: Fix bug too much call of updateCartSummary when OPC and cart rule
[-] Fo : Fix undefined var in cart-summary when updating id_address_delivery
[-] FO : Fix login cookie issues
[-] FO: fixed bug #PSCFV-3238 - compareController typo
[-] FO: Fix #PSCFV-8722 displayed specific prices on product page was sometimes wrong
[-] FO : Fix bug #PSCFV-8589 do not loose max level depth when upgrading
[-] FO : standardize behavior of selected country in the list when create a new address
[-] FO: fixed bug DOCTYPE line - #PSCFV-8602
[-] FO: Fix htaccess generation when disable mod_security is selected #PSCFV-8675
[-] FO: Don't display vat_number field if not required for the country on address.tpl
[-] FO: Extension test on file attachment for contact form should not be case sensitive #PSCFV-8616
[-] FO : Do not fade out on bigpic source change
[-] FO : Fix bug #PSCFV-7743 and #PSCFV-8286, bigpic source change
[-] FO: fixed bug Cart Summery Borders - #PSCFV-8421
[-] FO : Fix bug #PSCFV-8286, displayImage bad selector called
[-] FO: fixed bug Solved a problem with JSON.stringify problem with IE8 - #PSCFV-8340
[-] FO : Fix bug #PSCFV-7825 removing import of grid_prestashop.css and displaying errors in AdminPerformances
[-] FO: fixed bug missing <div class="clear"></div> in product.tpl - #PSCFV-8164
[-] FO : Add ccs and js to frontcontroller for old modules
[-] FO: change logo position
[-] FO : Fix bug #PSCFV-8183 lost order message in OPC
[-] BO: Fix htaccess generation for subfolders installation
[-] BO : Fix bug witth shop address and no state in country
[-] BO : Fix bug for csv export
[-] BO : Can not set PS_ORDER_OUT_OF_STOCK in one shop
[-] BO : Bad gender image when no gender
[-] BO: Fix #PSCFV-8827 fixed price of specific price rules should be a float
[-] BO: Fix admin carts currency prices on view and listing
[-] BO : Remove typo in address formating fields links
[-] BO : Remove undefined name when module can not be installed
[-] BO: Don't delete the directory of modules before upgrade them
[-] BO: fixed bug css - #PSCFV-8737 - AdminScenes.php ~~ remove inline css forcing a border to #large_scene_image
[-] BO: Fix #PSCFV-8730 display of selected dates on the backoffice listings header - thank to pitt phunsanit for the patch
[-] BO : Deactivate backwardcompatibility module
[-] BO: PSCFV-7685 parent category for root categories after upgrade
[-] BO : Fix bug #PSCFV-8626 rename actual admin folder
[-] BO: fixed bug Cart rules - Javascript error - #PSCFV-5045
[-] BO : Fix bug #PSCFV-8620 returns with customized product
[-] BO: Fix #PSCFV-8683 order_way collusion on listing between 2 tabs
[-] BO : Fix bug : #PSCFV-8631 no download-product.tpl in languages packs
[-] BO : Fix bug #PSCFV-8540 setting cookie key in cache key
[-] BO: fixed bug In back office, in product modification page, image pane, the image list appears broken in IE8 - #PSCFV-8024
[-] BO: Fix the Htaccess rewriting generation when one shop has the rewriting enabled and the last one on the same domain not
[-] BO: fixed bug #PSCFV-8258
[-] BO: Clear cart when customer is changed in back office orders #PSCFV-8520
[-] BO : Remove warning on ProductDownload
[-] BO : fixed field value saving when value is equal to 0 #PSCFV-8530
[-] BO : Fix bug #PSCFV-8481 no live edit on index when one language is active only
[-] BO : fixed bug #PSCFV-8095 now maximum weigh for carrier is float
[-] Classes : Bug fix : OrderOpcController, check instance of blocknewsletter module
[-] Classes : Bug fix : Mobile hooks, check PayPal for payments only
[-] Core: fix redirection loop for bugged versions of mysql using column name aliases on order by
[-] CORE : Fix bug #PSCFV-8636 again, cart rule with a reduction and free shipping
[-] CORE : Fix bug last part #PSCFV-8636, cart rule with a reduction and free shipping
[-] CORE : Fix bug #PSCFV-5624 set order reference to CHAR(10)
[-] CORE : fixed bug #PSCFV-8475 - Email templates with {shop_url} append url with index.php
[-] Core: Cache of Cart::getPackageList is now per cart
[-] Core: Local cache could never be totally cleaned
[-] MO: homefeatured - numbers are now the same
[-] MO: Fix product cover image on blockviewed with multishop
[-] MO : Fix rand parameter in favorite module js
[-] MO : Fix bug #PSCFV-8430 bad post type ajax request, thanks to maofree
[-] MO : Fix bug #PSCFV-8399 dictinct categegories in module blockcategories
Improved/changed features:
[*] Installer : Set context in upgrader
[*] Installer: Add PHP CLI installer
[*] FO : one_phone_at_least should be set
[*] FO : add steps to authentication pull request 002f468958 thanks to radovanx
[*] FO: use subdirectory per template for smarty cache
[*] FO : Check if grid_prestashop.css is available in theme before including
[*] FO : Retrocompat for default theme 1.4.10
[*] BO : Add block "close_td" in list_content.tpl [*] BO : Add block "close_td" in list_content.tpl {block name="td_content"} ..... {/block} {block name="close_td"} {/block} So now we can override "td" and "/td" tags. So we can create "td" "a" ... content.... "/a" "/td" when overriding the block open-td and close-td and we can use "a" tag with "href" rather than "onclick" to create view links in the list. And the user can choose to open the link in another tab or window.
[*] BO: The translation of modules are now made in the theme if modules are overrided or directly in the module folder
[*] BO: List all modules with an upgrade available on AdminModules header
[*] TR : Removed hard-coded dot in history.tpl
[*] TR : Improved English text of installer
[*] TR : added russian installer tabs
[*] TR : Fixed wrong use of translation functions in AdminTranslationsController
[*] TR : Added tab translations for installer languages
Added Features:
[+] BO: show all languages in setting of employee
####################################
# v1.5.4.0 - (2013-03-26) #
####################################
Fixed bugs:
[-] INSTALLER : Last fix of bug #PSCFV-8168 loyalty ADD id_shop to layered_product_attribute
[-] INSTALLER : Second fix of bug #PSCFV-8168 loyalty CHANGE id_discount to id_cart_rule
[-] Installer : do not fail on warning when addons modules list empty
[-] INSTALLER : First fix of bug #PSCFV-8168 reinsurance` CHANGE `filename` to `file_name`
[-] INSTALLER : Fix bug #PSCFV-8167 bad drop of non-existent index and correct genders image copy
[-] Installer: Install only the language choosen in the installer
[-] INSTALLER : Update gender for default customer
[-] Installer: download the language pack even if this is a native language on installation
[-] INSTALLER : Fix crash from genders jpg copy
[-] INSTALLER : Using $this when not in object context
[-] INSTALLER: Fix syntax error, unexpected 'public' (T_PUBLIC)
[-] INSTALLER : TEXT field can sometimes not have a default empty value
[-] Installer : Fixed languages parsing
[-] INSTALLER : Fix bug #PSCFV-6128 do not loose custos on orders from 1.4.X
[-] Installer: Fix the installation when safe_mode is enabled
[-] Installer: Fix 2 path for the upgrader
[-] Installer: fix UNIQUE key on stock_available table #PSCFV-7886
[-] Installer: fix upgrade __PS_BASE_URI__
[-] Installer : Fix warning during upgrade when issues with shops tables
[-] Installer: check create table privileges
[-] Installer: force magic_quote_runtime to 0
[-] INSTALLER : fixed bug #PSCFV-5702 - error javascript when password have a simple quote
[-] Installer: clear the database when an error occured during the install
[-] FO : Fix bug #PSCFV-8415 zipcode is required without zip code format too
[-] FO : Customization delete when quantity custo is one, sorry about this bad commit last time
[-] FO : Fix bug #PSCFV-8364 block cart hidden or products are doubled
[-] FO : Fix bug #PSCFV-8098 inversion in customer and address name
[-] FO : GuestAccount required phone
[-] FO : update total_product_price_X when customized product after login
[-] FO : Fix bug #PSCFV-8202 special chars for checkCustomizations js function
[-] FO : Fix bug #PSCFV-8028 refactoring customization
[-] FO : Fix bug #PSCFV-8031 and maybe others, do not loop when calling displayNewProducts in blockcart
[-] FO: Fix #PSCFV-7600 display accessory in the product page even if there are no stock for the default combination (on the default theme)
[-] FO : fixed attributes order #PSCFV-8032
[-] FO : remove 404 images in Live Edit
[-] FO : Fix bug #PSCFV-6595, fancybox images for IE and AlphaImageLoader
[-] FO : Bug fix : JS Minifier replaced with Google Closure Compiler
[-] FO : Do no try to add empty css or js file name
[-] FO : Check for cart rules before diplaying shopping cart in OPC
[-] FO: Fix separated packages
[-] FO : Mobile theme updated, templates added/improved
[-] FO : Avoid flashing of availability_statut
[-] FO : Bug fix #PSCFV-7915 : Mobile theme issue, default attribute
[-] FO : Fixed mobile theme authentication CSS
[-] FO : Fix bug #PSCFV-5168, required phone in all templates
[-] FO : fixed bug #PSCFV-5744 - Using attribute values with decimal points numbers and its ten multiple, have the same url
[-] FO : minimum purchase total with wurrency
[-] FO : remove "Invalid address warning" when not "same" an no invoice address
[-] FO : Fix bug #PSCFV-7946 delete customized product with several custos
[-] Fo : Fix bug #PSCFV-7956 select invoice address when adding a first new address
[-] FO : Fix case for some excluded searched chars
[-] FO : Fix bug #PSCFV-8149 Notices on undefined properties
[-] FO: Fix ecotax displayed on the quantity discounts tab with a change of base_price on the product page
[-] FO : Fix exception when PS_CART_FOLLOWING
[-] FO : Fix bug #PSCFV-8132 authRedirection not implemented and wrong back redirection
[-] FO: fixed bug Module crosselling not working properly (Scroll / JS) - #PSCFV-8080
[-] FO : the option that disable the tax display in the cart wasn't used anymore, I used it again #PSCFV-8033
[-] FO : Fix bug #PSCFV-7880 display wrapping row in cart
[-] FO: Fix links to products_attribute when custom url is defined with the blocklayered
[-] FO : Fix bug #PSCFV-7920 wrong redirection after account creation
[-] FO: Fix #PSCFV-8083 display of initial price with quantity discount and cart refreshment
[-] FO: fixed bug two little coding error - #PSCFV-7982
[-] FO: fixed bug Backoffice and ipad - #PSCFV-7696
[-] FO : Home w3c validation removed "legend" attribute and target="_blank"
[-] FO: Fix #PSCFV-7850 sometimes minify_html lib was returned nothing...
[-] FO : Back slashes for inputs that need it in authentication.tpl
[-] FO : Fix bug isGuest not defined, set id_carrier in base at login
[-] FO : cut long referrers in order to avoid a crash #PSCFV-7775
[-] FO : display total voucher without taxes when the customer group does not display taxes #PSCFV-7746
[-] FO : fixed guest saving #PSCFV-6150
[-] FO: Fix display specific prices for combinations in product page #PSCFV-7807
[-] FO : Fixed regexp for images embbed in description
[-] FO : Fix warning #PSCFV-7805
[-] FO: Fix categories and products restriction for unidentified customers after upgrade
[-] FO : deprecated free_shipping var set to "false"
[-] FO : Fix bug #PSCFV-7467 no email in post data
[-] FO : Fix Bug #PSCFV-7439 radio input css
[-] FO : Fix Bug #PSCFV-7339 available date on product page
[-] FO : Fix Bug PSCFI-7016 available date on product page
[-] FO: Fix PHP warning on update quantity in cart with customizables products
[-] FO: don't load medias if error on product page to avoid JS bugs
[-] FO: Fix Cart::getDeliveryOption() cache
[-] FO : Fix bug #PSCFI-6686 when url param has no value set 1 to valuePSCFI-6686
[-] FO: Fix product restriction by shop
[-] FO : Fix bug #PSCFV-7491 special characters in direct search
[-] FO : Fix bug #PSCFV-7562 no availability date in tempalte
[-] FO: Fix infinite loop on overriding Module::getPaymentModules and executing hook on it #PSCFV-7760
[-] FO: Fix #PSCFV-7714 quantity discounts displaying in product page for specific customer
[-] FO: Fix #PSCFV-7627 customer group reduction was applied on combinations for unidentified users on the product page
[-] FO: Fix fatal error when a customer is deleted and still logged
[-] FO : you need to execute CartRule::autoAddToCart() after CartRule::autoRemoveFromCart(), everytime #PSCFV-7674
[-] FO: fixed bug rendering Problems in IE6 with default theme - #PSCFV-7628
[-] FO : fixed voucher display in the customer view #PSCFV-7332
[-] FO : Fixed voucher value when it exceeds the product total #PSCFV-7421
[-] FO : fixed customer discounts #PSCFV-7479
[-] FO : fixed retro compatibility issue with discounts #PSCFV-7553
[-] FO : Fix bug #PSCFI-6864 #PSCFV-6516 Issue with deleted address blocking order process
[-] FO: Fix #PSCFV-7474 display taxes on order payment when the price without taxes is displayed
[-] FO: Fix #PSCFV-7530 bad quantity returned displayed on order detail for multiple return
[-] FO : Fix bug #PSCFV-7504 last category for parent and not always default one
[-] FO : Fix fatal error when memcache is not installed and using Memcached
[-] FO: Fix #PSCFV-6375 always display the vat_number field for registration even if the european vat number module is disabled
[-] FO: Fix Product::getProductName for multilang and multishop
[-] FO : 'undefined' is undefined =)
[-] FO: fixed bug Change a little css code of global.css to solve a little issue on authentication page - #PSCFV-7527
[-] FO : Fix #PSCFV-6356 recall adresses in cart after login
[-] FO : fixed bug #PSCFV-7508 - broken links to images in jquery.fancybox.css
[-] FO : Fix bug #PSCFV-6516 when not same address to process
[-] FO: fixed bug Block Cart in columns disappear if product is removed - #PSCFV-7495
[-] FO: fixed bug Blocknewsletter.css has an extra bracket on the last line and when corrected override still won't work - #PSCFV-7436
[-] FO: fixed bug PSCFV-6644
[-] FO : Fix bug #PSCFV-6655
[-] FO : fixed bug #PSCFV-7381 - free shipping when no carrier available
[-] FO: Fix #PSCFV-7322 Product::getProductProperties quantity cache
[-] FO: updated css product_list
[-] FO : No error on first consultation of shopping cart with minimum purchase
[-] FO: added a new line for better display on IE9 for the "new" on homefeatured and product list
[-] FO : Fix bug #PSCFV-7388 Guest checkout & state validation thankx to Sergio
[-] FO : adding values to empty parameters in ajax of cart-summary.js
[-] FO : Apply changes from commit 1.4.X 1d0d59845b5f9cb9333a89e60523ab41df076d89 no cache for POST queries
[-] FO: fixed bug css in IE
[-] FO: fixed Solutions for authentication.tpl and address.tpl about dni field - #PSCFV-6619
[-] FO : Try to fix "phone required" bug once again when only signing in
[-] FO : Fix bug #PSCFI-6751 for 1.5.X carriers and payments update in OPC
[-] FO : fixed smarty curly bracket Signed-off-by: Marco Cervellin <[email protected]>
[-] FO : small fix on shopping cart adresses
[-] FO: fixed Installer - Message d'erreur mal affiché - #PSCFV-6585
[-] FO: fixed IE8 Adding Address Problem + improve line-height input on IE - #PSCFV-6401
[-] FO: improve display voucher code
[-] FO : fixed bug #PSCFV-5635 - Mobile Theme tax displayed
[-] FO : fixed reduction display on product page #PSCFV-6308
[-] FO : fixed bug #PSCFV-6533 - CMS categories: This page does not exist.
[-] FO : fixed voucher highlighting in the cart #PSCFV-6422
[-] FO : fixed +/- Tx on the customer voucher page #PSCFV-6642
[-] FO: Fix Pack::getItemTable with some PHP versions
[-] FO : recycled package should be disabled by default (because the option can be deactivated) #PSCFV-6639
[-] FO : fixed shipping number in e-mail #PSCFV-6584
[-] FO: Fix #PSCFV-6456 price of default attribute with specific price on product comparison