forked from PrestaShop/PrestaShop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
3384 lines (2933 loc) · 191 KB
/
CHANGELOG
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-2011 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 license@prestashop.com 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 <contact@prestashop.com>
@copyright 2007-2011 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.4
--------------------------------
####################################
# v1.4.3.0 - 7119 (2011-06-16) #
####################################
Added Features:
[+] Installer : Refuse to index the page by robots
[+] BO : Added button "Add my IP"
[+] BO : Adding pagination to the customers list
[+] BO : added the option to move product images to the new filesystem
[+] Classes : added manufacturer name and id in ProductSale::getBestSales();
[+] Classes : added manufacturer name and id in ProductSale::getBestSales(); without sql error ;)
[+] MO : MondialRelay, add fields personalization and fix js
[+] MO : Refactoring Module dejala and LiveZilla
[+] MO : layered module - real time URL building (ability to give the URL to someone)
Improved/changed features:
[*] Project : Removed "if class_exists" in autoload
[*] Installer : Now when you install Prestashop, all languages are disabled expect the default language of your shop
[*] FO : Fixed Bug #PSCFI-1342 - Gest customer transformation is only applicable when there is no non-guest customer with the same email
[*] FO : Fixed Bug #PSCFI-2241 - Error in JS tools.js
[*] BO : Added some help on the search configuration page
[*] BO : detailled error message when you import from csv
[*] Classes : #PSCFI-2061 - removed return statement in constructor
[*] Classes : fix issue on cache object return value in method getPosition
[*] MO : Fixed bug #PSCFI-2242 - Changes from the 1.3.x version have not been added to the 1.4 version
[*] MO : Treepodia module can now handle more products on their feed
[*] MO : eBay module - Some improvments
[*] MO : fix issue on loyalty module
[*] WS : clean code
[*] WS : clean code
Fixed bugs:
[-] PROJECT : Bug fixed #PSCFI-2119 - Cache was not working well with getRow and getValue (Thanks Remi for the fix :)
[-] Project : remove unused 4 param in Tools::displayPrice() #PSCFI-2063
[-] Project : the autoload now accept not "Core" classes in classes folder.
[-] Installer : Undefined variable languages
[-] Installer : add a ";" to SQL requeste
[-] FO : Add a defined list of required fields for a susbscription form
[-] FO : Bug Fixed #PSCFI-1515 - Specific price cache is useless in priceCalculation
[-] FO : Bug Fixed #PSCFI-2090 - Group discount + discount = incorrect combination price
[-] FO : Bug Fixed #PSCFI-2105 - Voucher discount on total amount
[-] FO : Bug Fixed #PSCFI-2107 - Required Field "Tax Identification"
[-] FO : Bug Fixed #PSCFI-2161 - Rounding issues
[-] FO : Bug Fixed (related #PSCFI-2250) - Out of stock behavior + comparison page
[-] FO : BugFix #PSCFI-2267 : Forbidden access to tpl files
[-] FO : BugFix #PSCFI-2271 : Cumulable voucher can be added more than one time to cart
[-] FO : Fix Undefined value when adding a product to the cart
[-] FO : Fix a bug with invoice address on OPC #PSCFI-2099
[-] FO : Fix the default fields for a new register user form
[-] FO : Fixed Bug #PSCFI-1730 - CCC mustn't be included each time with https
[-] FO : Fixed Bug #PSCFI-2163 - Product list dont show "add to cart" button, if minimal qty to order is set to something != 1, it must be <= 1
[-] FO : Fixed Bug #PSCFI-2163 - Product minimal quantity by default must be 1 and not 0
[-] FO : Fixed Bug #PSCFI-2192 - Nomalization
[-] FO : Fixed Bug #PSCFI-2241 - Error in JS tools.js
[-] FO : Fixed bug #PSCFI-2088 - change id attribute adress_alias to address_alias.
[-] FO : Fixed bug #PSCFI-2120 - Customization image delete button doesn't work. The link was commented.
[-] FO : Fixed bug #PSCFI-2150 - Wrong url when we used the sort option
[-] FO : Fixed bug PSCFI-2135, Refreshing price is fixed when the ajax setting of blockcart is turned off
[-] FO : Function usingSecureMode does not work properly (depends on the server configuration)
[-] FO : PSCFI-2118 - Substr of payment name compared to payment name (payment name musnt be truncated).
[-] FO : PSCFI-2118 - Substr of payment name compared to payment name (payment name musnt be truncated).
[-] FO : Remove blocklayered CSS/Js files on page we dont need them (and they make bugs with pager)
[-] FO : Rounding issues
[-] FO : Smarty 2 compatibility
[-] FO : Validator don't work fine with non ansi chars
[-] FO : fix an URL never rewrited in stores.js #PSCFI-1931
[-] FO : fixed bug #PSCFI-2153 - CreditSlip PDF not accessible from FrontOffice
[-] FO : fixed bug #PSCFI-2171 - Group Access Not Working
[-] FO : fixed bug #PSCFI-2203 - [OPC] AJAX login fails and freezes when user has no address defined.
[-] FO : fixed bug #PSCFI-2279 - voucher add to cart technical error
[-] FO : fixed bug - breadcrumb was not display in some case.
[-] FO : removing the link on the category label #PSCFI-2065
[-] BO : Better understanting for address layout, Add a ignore class list for the liable fields and fix translsation
[-] BO : Bug fixed on CSV import (Thanks to Magavenue :)
[-] BO : BugFix #PSCFI-2289 - AdminImport not working in some cases
[-] BO : Fix tax calcul in attribute generator #PSCFI-2095
[-] BO : Fixed #PSCFI-444 - flag can be updated even if .htaccess is not writable
[-] BO : Fixed Bug #PSCFI-2200 - On installing languages, bad adding on table profile_lang (id_lang and id_profile are reversed)
[-] BO : Fixed Bug #PSCFI-2263 - Mexico must be set as a country with states
[-] BO : Fixed Bug PSCFI-2198, The current editing element will not be removed if the user cancel it and a better fonctionality of Echap key.
[-] BO : Fixed bug #PSCFI-2092 - Missing translation on contact details
[-] BO : Fixed bug PSCFI-2207, Fixed a bad variabled used with vat.
[-] BO : Fixed invoice date when database is MySQL 4.
[-] BO : fixed bug #PSCFI-2247 - AdminCustomerThreads (Customer Service) displays wrong currency symbol in BO
[-] BO : fixed bug #PSCFI-2248 - browser error "unterminated string constant" in AdminTracking.php
[-] BO : fixed bug #PSCFI-2255 - PDF PS_INVOICE_PREFIX without iconv
[-] BO : fixed image caching when memory_limit = -1
[-] BO : fixed overflowing admin sub-tabs in themes flashyturtle and origins
[-] BO : fixed rewrite link warning message when importing
[-] BO : removed hard coded tmp img link
[-] Classes : Bug fixed in Language class, delete method when no i18n file were created for a language.
[-] Classes : fixed bug #PSCFI-2124 - Misuse of redirect (Tools.php) in Order Process (and probably other areas) causes failed flow.
[-] Classes : fixed bug #PSCFI-2141 - Object->add() should not use Tools::getValue() - final part
[-] Classes : fixed bug #PSCFI-2141 - Object->add() should not use Tools::getValue() - first part
[-] Classes : fixed bug in property_exists function
[-] Classes : fixed calls of non static method as static in order controllers
[-] Core : fixed bug #PSCFI-2143 - Insufficient check for crawler populated ghost carts in CartController
[-] MO : #Fixed bug PSCFI-2134 - Json parse error. Need ' instead of \'
[-] MO : Add Constants cart directly to the module for the PrestaShop 1.3 compatibility
[-] MO : Bug fixed #PSCFI-2122 - Problem on rounded values
[-] MO : Bug fixed #PSCFI-2122 - Problem on tax values
[-] MO : Bug fixed #PSCFI-2238 - Module USPS was send container type to USPS
[-] MO : Bug fixed eBay module - Wrong flag for resync option
[-] MO : Categories shown twice (or more) on block category when customer have more than one group
[-] MO : Code Cleaning
[-] MO : Fix blocklayered module to allow user to sort products list (now use default value from BO, and refresh using ajax) #PSCFI-2096
[-] MO : Fix console.log IE
[-] MO : Fix minors bug and translations
[-] MO : Fix smarty display for 1.3
[-] MO : Fix translations
[-] MO : Fixed Bug #PSCFI-2182 - Loyalty module (loyalty-program.php) return wrong category list and too long list on vast catalog
[-] MO : Fixed Bug #PSCFI-2191 - DIBS module test paramter is assigned with wrong values.
[-] MO : Fixed Bug #PSCFI-2191 - DIBS module test paramter is assigned with wrong values.
[-] MO : Fixed Bug #PSCFI-2192 - Required fields and ajax cart dont work as expected
[-] MO : Fixed Bug #PSCFI-2192 - Required fields and ajax cart dont work as expected
[-] MO : Fixed Bug #PSCFI-2264 - Left scroll button is visible when the page is loaded whereas there is no products on the left.
[-] MO : Fixed SQL error on layered module
[-] MO : Fixed SQL/PHP errors on layered module when category is empty
[-] MO : Fixed bug - Incorrect validation for discount_value_percentage field
[-] MO : Fixed bug - Possibility to put negative values
[-] MO : Fixed bug - Values are not passed in an htmlentities function before display
[-] MO : Fixed bug : Ajax with the button add cart properly works when an product image doesn't exist
[-] MO : Fixed bug PSCFI-2187, Use back price_wt instead of total_wt wthen product is added to google cart.
[-] MO : Fixed bug when the hook is detached of the right
[-] MO : Fixed errors, and add nb items per page to the layered block module
[-] MO : Fixed norms
[-] MO : Had a security token on eBay module
[-] MO : Mistake in the commit 6952
[-] MO : MondialRelay fix french franslations
[-] MO : MondialRelay is now supported for PrestaShop 1.3. Clean unused code.
[-] MO : MondialRelay, add french translation
[-] MO : Norm pass
[-] MO : Normalization + better directory clean
[-] MO : PayPal create account link for Spain changed
[-] MO : added cast in blockrss
[-] MO : added check on secure key in moneybookers validation
[-] MO : added token on export and send mail on twenga module
[-] MO : carriercompare - undefined variable
[-] MO : eBay module - fix for PrestaShop 1.3.x and many others improvments
[-] MO : fix french translation for statscarrier
[-] MO : fixed Fatal Error when payment name in osc bdd has character inappropriate // :p
[-] MO : fixed bug #PSCFI-2165 - Module ImporterOsc - After importing, changing orders state, in list mode : date of today, in order detail mode : real date
[-] MO : fixed bug #PSCFI-2194 - Layered when reset display inactive products
[-] MO : fixed bug #PSCFI-2219 - Incorrect usage of numRows()
[-] MO : fixed bug #PSCFI-2229 - added help text on specific option
[-] MO : fixed bug #PSCFI-2240 - Layered navigation - overloading template file (.tpl) is not working
[-] MO : fixed bug #PSCFI-2280 - module customer follow up has bug when install in back office
[-] MO : fixed bug - import osc was not display in shopImport module
[-] MO : fixed bug on instant search with Internet Explorer 7
[-] MO : fixed bug on tm4b
[-] MO : fixed error when uninstall socolissimo module //thanks to Alain ouftete
[-] MO : layered navigation pagination added ;) #PSCFI-2137 #PSCFI-2085
[-] MO : layered navigation pagination fixed undefined variable
[-] MO : now only discount bound to a valid order is shown (Loyalty module)
[-] WS : Bug fixed due to Core modifications
[-] WS : Factorization of WebserviceRequest
[-] WS : Small fix when error happens
[-] WS : Support for categories POST - PSCFI-1416
[-] WS : Support for image product POST method PSCFI-675, PSCFI-1416
[-] PDF : Bug Fixed - Invoice: tax detail line with reduction
####################################
# v1.4.2.5 - 6780 (2011-05-30) #
####################################
Improved/changed features:
[*] Installer : add PS_VERSION_DB configuration data filled after install / upgrade
[*] FO : smarty_v2 improvement : moved currentTemplate init in fetch method instead of display method
[*] Core : module carrier has been disabled on One page checkout when customer isn't logged
[*] Core : module carrier has been disabled on One page checkout when customer isn't logged Part 2
Fixed bugs:
[-] Project : fix an issue on Tools::jsonDecode
[-] Installer : fixed bug where categories have incorrect level_depth
[-] FO : Bug Fixed #PSCFI-2077 - Tax rules + customization
[-] FO : Fixed #PSCFI-2051 - weekdays translations are now correct in store_infos google maps
[-] FO : Fixed #PSCFI-2066 - Control terms if terms are activated
[-] FO : On updating address with a bad field, firstname and alias are fill with the post + the registered data.
[-] BO : Fixed bug #PSCFI-2035 - The other messages in this category have been answered
[-] BO : Fixed bug #PSCFI-2073 - avoid crashing the product listing page when you have not enough memory to resize the thumbnails
[-] Classes : fixed bug with cookie name generated from http host causing cookie duplication
[-] MO : Bug fixed #PSCFI-2055 - number_format replaced by round in PayPal Module (Thanks Angora :)
[-] MO : Bug fixed on eBay Module (when products does not exist)
[-] MO : Fixed bug #PSCFI-1782 - Dibs could not do the callback
[-] MO : adding a message in So Colissimo module, in order to indicate: this module isn't compliant with OPC feature
####################################
# v1.4.2.4 - 6742 (2011-05-27) #
####################################
Added Features:
[+] Installer : Case management system of ubuntu, phpversion return 5.2.4-2ubuntu5.2
[+] Installer : During installation if the PHP version is less than 5.2, install smarty 2, otherwise it installs smarty 3
[+] Installer : during upgrade, analyse the database structure to find PrestaShop version and compare it to version in settings to display or not a warning
[+] Installer : hidden notice date_default_timezone_set, notice prevented the use of Ajax back
[+] BO : Add jquery plugin for the address layout selection feature
[+] BO : Added ability to add instructions in the backup file to drop existing tables during restore
[+] BO : Adding validation field for Regenerate password
[+] BO : Adding validation function and Update Options function
[+] BO : Address layout add the pattern when an user click on a selection key
[+] BO : Now you can update an already installed language from prestashop.com
[+] BO : add display of company name in order details, and display of phone in PDF invoice
[+] BO : add module physical name as title of element in admin module list
[+] MO : Added "Site speed" feature to Google Analytics Module (See which pages load the fastest and which ones are slower)
[+] MO : Added customer e-mail in the notification sent after each order (mailalerts module)
[+] MO : Rewrite Generate and Get tickets including new Interface class to communique with the mondial relay webservice
[+] MO : blockcategories can now be hooked on footer
[+] MO : eBay module (currently only for eBay.fr)
[+] WS : Add virtual field in Category entity.
[+] WS : add state command for WS
[+] WS : allow displayed simple association
[+] WS : allow negative values in the filter
[+] WS : allow the outformat even the authentication failed
[+] WS : allow to display association in blank schema
[+] WS : allow to display association in synopsis
[+] WS : bug PSCFI-1659 is fixed
[+] WS : bug PSCFI-1778 is fixed
[+] WS : bug PSCFI-1778 is fixed
[+] WS : bug PSCFI-1780 is fixed
[+] WS : change association name and its getter, improve error output
[+] WS : improve the filter behaviour
Improved/changed features:
[*] Project : Improve autoload performances
[*] Installer : A log file is now created during installation
[*] Installer : Add index to modules followup and add index to installer
[*] Installer : added unique index to table category_group
[*] Installer : for old version, you will keep your admin icon for your custom tab
[*] Installer : no more cache after upgrade
[*] Installer : when upgrade, cleaning cache and compile dir now also exclude .htaccess files
[*] FO : #PSCFI-1594 Corrects missing id_country
[*] FO : #PSCFI-1647 corrects disappearing invoice address title
[*] FO : Adding address layout management
[*] FO : Adding address layout management
[*] FO : Adding address layout management
[*] FO : Adding address layout management
[*] FO : CSS improvements (thanks Melinda!)
[*] FO : New default logo (better JPG quality)
[*] FO : corrects js error when cart is empty
[*] FO : hide the "add to cart" button if there are required customization fields
[*] FO : hide the "hide to cart" button for products with minimal quantity > 1 when customer can't choose the quantity
[*] FO : remove some unused global vars declaration
[*] BO : 'add a language' is now 'add or update a language'
[*] BO : Added new column to "Carts" tab and ability to delete carts
[*] BO : Added several advice to help during database backup process and database restore process
[*] BO : Better cache management for image uploading (Categories, Manufacturers, Suppliers, Stores) - no more need to press CTRL+F5
[*] BO : Fixed #PSCFI-1667
[*] BO : Improved code standards and UI/UX for the Translations tab
[*] BO : Improved product indexation (1 query instead of 1 query per word!)
[*] BO : Improvement about login with SSL enabled. Now you can use http if maintenance or local ip.
[*] BO : On module list reduce SQL query
[*] BO : On modules position reduce SQL queries
[*] BO : Remove unused variable
[*] BO : added a default sort direction on the stats modules
[*] BO : added a warning message when the shop domain name is wrong
[*] BO : added warning message when updating a language pack you already installed
[*] BO : check if cart has an order attached improvement
[*] BO : delete unused method and globals in adminOrder
[*] BO : deleting the English language is now forbidden
[*] BO : improvement of module filter system
[*] BO : initial stock to 0 (new added products,new declination,generator declination )
[*] BO : now all hidden file are excluded in listing file in adminImport
[*] BO : now to enable ssl, you need to already use it in back office
[*] BO : performance optimization in the back office, and performance tools added for developers
[*] BO : when carrier is free => don't display range
[*] BO : you can now choose if you want to delete existing images in product import
[*] BO : you can now enable or disable newsletter and optin options, directly on the customers listing
[*] Classes : removed some more returns in constructors see #PSCFI-2009
[*] Classes : see #PSCFI-2009 - Use of return statements in class constructors break class integrity
[*] MO : Change European VAT module description
[*] MO : Enable translation to title/description of the module "pretashop security"
[*] MO : Fix bug when saving module Customer referral program (error message say each time "Invalid html field, javascript is forbidden")
[*] MO : Improvment #PSCFI-934 - UPS module has now an option to make one package for all products
[*] MO : fixed bug on validate Rules shopImport
[*] MO : fixing tpl calculation specials
[*] MO : import oscommerce now import newsletter
[*] MO : improve in module Paypal (thank you Tomer)
[*] MO : now oscommerce import use "date_add" for products
[*] MO : theme installer can now manage module exceptions
[*] WS : Add image association for combinations
[*] WS : Add information for associations : virtual_entity
[*] WS : Add manufacturer_name getter for Product entity and clean WebserviceParameters of Configuration entity
[*] WS : Add new authentification method for Webservice
[*] WS : Add setWsPasswd in Customer and Employee entity in order to set password in plain text
[*] WS : All setter which don't exists is set to false
[*] WS : Fixed feature/bug PSCFI-1095
[*] WS : Improve Attribute displaying
[*] WS : dispatcher evolved
[*] WS : refactoring webservice classes
[*] WS : set the class name to us for webservice with a static property of WebserviceRequest class. [-] WS : product options values are get well
[*] TR : fixed translations #PSCFI-759
[*] TR : fixed translations #PSCFI-862
Fixed bugs:
[-] PROJECT : Fixing bug in AddressFormat (as vSchoener suggestion)
[-] Project : Add a new way to build the layout address. All template / pdf are compatible with and keep the order of the layout. Fix US format view for the addresses
[-] Project : add parameters to respect the strict standard
[-] Project : add parameters to respect the strict standard
[-] Project : fixed bug #PSCFI-1687 - $protocol_link and $protocol_content not assigning correctly
[-] Installer : 1.4.1.1 => 1.4.2.0 wq
[-] Installer : Fix PSCFI-1579 - on update, paypal and authorize.net will not be disabled.
[-] Installer : Fixed #PSCFI-1722 - Characters encoding problem
[-] Installer : Fixed bug #1803 - Adding IGNORE if the configuration already exists
[-] Installer : Fixed bug #1803 - The PS_STOCK_MVT_REASON_DEFAULT was never add in the configuration table during the update.
[-] Installer : Fixed bug in sql query settings lite
[-] Installer : Fixed bug on installing without default timezone
[-] Installer : Fixed for new address format
[-] Installer : Fixed undefined constant when upgrading from version 1.3.7 or lower
[-] Installer : If an user submit wrong infos on the step 4, he can't re-submit the form because the button next is disabled
[-] Installer : Missing translations
[-] Installer : Tab AdminAliases is now correctly moved to Preferences during update
[-] Installer : Undefined variable in update_module_followup
[-] Installer : bug fixed #1863 request update (SQL)
[-] Installer : desactivate custom module will not desactivate native partner modules
[-] Installer : fix commit 6591 - remove duplicates from table category_group
[-] Installer : fix error template smarty for smarty v2
[-] Installer : fix php version ubuntu
[-] Installer : fixed bug #PSCFI-1301 - Prestashop installation and Swift exception
[-] Installer : fixed bug #PSCFI-1542 - PSCFI-1455 (svn5981) needs further followup
[-] Installer : fixed bug #PSCFI-1613 - Missing flag when adding languages during installation
[-] Installer : fixed bug #PSCFI-1747 - Variable assigned to rigidly in a file in the module dateofdelivery
[-] Installer : fixed bug #PSCFI-1823 - use of PHP function property_exists is not compatible with PHP 5.0
[-] Installer : fixed bug #PSCFI-1841 - ps prefix in sql file
[-] Installer : fixed bug #PSCFI-1908 - Tab name for SEO & URLs is now updated in sql 1.4.2.3
[-] Installer : fixed bug #PSCFI-1934 - removes duplicates from table category_group
[-] Installer : fixed bug #PSCFI-979 - unknown _PS_version_ in install process
[-] Installer : fixed bug on upgrader when you have wrong informations in your settings.inc.php file
[-] Installer : fixed timezone issue on install process with a version of PHP < 5.2
[-] Installer : fixes for the sql upgrade scripts
[-] Installer : module loyalty
[-] Installer : removed hard id_tab for AdminMeta lang update
[-] FO : If the purchase is verified with a guest account if this type of control is allowed
[-] FO : Prohibits the payment of an order if the conditions were not accepted
[-] FO : #PSCFI-1654 Fixed a bug concerning the order process after a login
[-] FO : #PSCFI-1660 Fixed a bug which not display an error when a carrier is not selected
[-] FO : #PSCFI-1674 Display problem about tax identification with guest checkout activated
[-] FO : Accept return product when the status of payment is accepted.
[-] FO : After an upgrade, it was impossible to create an account
[-] FO : Bug Fixed #PSCFI-1558 - Ecotax on product page when taxes are disabled
[-] FO : Bug Fixed #PSCFI-1845 - Rounding issues
[-] FO : Bug Fixed #PSCFI-1980 - Minimum order purchase and taxes
[-] FO : Fix bug when double click on "confirm order" button (add .hideOnSubmit class on elements to hide when parent form is submit) #PSCFI-1954
[-] FO : Fix bug when double click on "confirm order" button (add .hideOnSubmit class on elements to hide when parent form is submit) #PSCFI-1954
[-] FO : Fix else if and assign compatibility for smarty v2
[-] FO : Fix state order for USA
[-] FO : Fix the displayed address using smarty 2
[-] FO : Fix the state display changing the country when State:name doesn't exist in the layout
[-] FO : Fix theme compatibility < 1.4.2
[-] FO : Fix undefined variable
[-] FO : Fixed #PSCFI-1454 - fixed security lack if someone know the maintenance IP
[-] FO : Fixed #PSCFI-1611 - Comment mistake
[-] FO : Fixed a bug related to Smarty v2 on addresses.tpl
[-] FO : Fixed a bug related to the "Last quantities available" message display
[-] FO : Fixed an error when declinations with variable attributes are created for a same product
[-] FO : Fixed bug #PSCFI-1582 - Not correct search. Now we list all products which contains the search word.
[-] FO : Fixed bug #PSCFI-1592 - CMS category specifics meta tags was missing
[-] FO : Fixed bug #PSCFI-1593 - Path error with CMS subcategory. The $fullPath variable wasn't declared in the right place.
[-] FO : Fixed bug #PSCFI-1652 - The Best Sales pagination now works properly
[-] FO : Fixed bug #PSCFI-1665 - Invalid token when Instant search enabled. The $static_token variable was never set with instant search
[-] FO : Fixed bug #PSCFI-1718 - Categories block doesn't show categories when processing empty cart checkout. There was a javascript error.
[-] FO : Fixed bug #PSCFI-1825 - Tax is always displayed on the cart module
[-] FO : Fixed bug #PSCFI-1842 For guest, order details disappears when the browser is resized (IE7)
[-] FO : Fixed bug #PSCFI-1858 - Bug with cutomized field and reordering
[-] FO : Fixed bug #PSCFI-1864 - Fixed bug on ganalytics trackink step order when using url rewriting
[-] FO : Fixed bug #PSCFI-1865 - Some supplier images were not displayed. Image directory was _PS_MANU_IMG_DIR_ instead of _PS_SUPP_IMG_DIR_
[-] FO : Fixed bug #PSCFI-1883 - Changing the condition to avoid a problem of cache
[-] FO : Fixed bug #PSCFI-1895 - redirection problems on adding product to cart
[-] FO : Fixed bug #PSCFI-1895 - redirection problems on removing product to cart
[-] FO : Fixed bug #PSCFI-1914 - Voucher calculation and product discount
[-] FO : Fixed bug #PSCFI-1914 - Voucher calculation and product discount
[-] FO : Fixed bug #PSCFI-2024 - If using minimum amount to order don't see "cart is empty" alert but the cart with no products.
[-] FO : Fixed bug Smarty error $customizationQuantityTotal didn't exist. Replaced by $product.customizationQuantityTotal.
[-] FO : Fixed the undefined variable invoice_address on pdf-order-return.php
[-] FO : Incorrect price on product page when using group reduction + combination
[-] FO : No error popup "Cannot add this product because current voucher does not allow additional discounts" while using ajax cart
[-] FO : Product combination quantity not displayed
[-] FO : Product with combination should use default ecotax if not overriden
[-] FO : Removed useless CSS in blockstore #PSCFI-1443
[-] FO : Small fix regarding code standards
[-] FO : Validation W3C
[-] FO : bug fixed remaning for free shippping was casted to int
[-] FO : extra semicolon
[-] FO : fix a bug with default declination in product page #PSCFI-1917
[-] FO : fix a javascript bug on order page when a cart item is deleted #PSCFI-1905
[-] FO : fixed a bug wich controls the validity of the password
[-] FO : fixed bug #PSCFI-1310 - DNI mandatory for country not requesting DNI
[-] FO : fixed bug #PSCFI-1316 - one page checkout gives shipping error when the shipping clearly shows
[-] FO : fixed bug #PSCFI-1585 - Wrong filename css in SearchControllers.php
[-] FO : fixed bug #PSCFI-1590 - meta page title for manufacturers and suppliers
[-] FO : fixed bug #PSCFI-1602 - Googlemaps does not show the map or even the shops (there is no map)
[-] FO : fixed bug #PSCFI-1686 - Redirect to ssl has incorrect logic
[-] FO : fixed bug #PSCFI-1713 - issue with wishlist name translation
[-] FO : fixed bug #PSCFI-1786 - svn6231 cart bug and cannot check out using 1 page or 5 step checkout
[-] FO : fixed bug #PSCFI-1827 - Error with Url rewrite on stores page
[-] FO : fixed bug #PSCFI-1906 - 2 states fields for American account creation
[-] FO : fixed bug #PSCFI-2012 - The names of some sub categories are overflowing
[-] FO : fixed bug on refresh of cart summary when you log in on One page checkout
[-] FO : fixed bug on smarty v2 compatibility
[-] FO : fixed little bug with TOS value on Cookie
[-] FO : fixed strange chars in CMS contents when HTML is reduced #PSCFI-1956
[-] FO : removing the link on the category label
[-] FO : search improvements, both for indexation and search
[-] FO : see #PSCFI-1454
[-] FO : set <script> tags comments compatible XHTML with CDATA #PSCFI-1978
[-] BO : Address Layout is more restriced for the format of the attributes name
[-] BO : Bad link in AdminTab.php
[-] BO : Bug Fixed #PSCFI-1250 - Translations in tax rules instructions
[-] BO : Bug Fixed #PSCFI-1457 - Ecotax problem during product creation
[-] BO : Cache + pagination
[-] BO : Fees by Carrier the "," was not correctly replaced by "."
[-] BO : Fees by Carrier the "," was not correctly replaced by "."
[-] BO : Fix a bad method call with an object not instantiated
[-] BO : Fix div size
[-] BO : Fix error when PEAR already installed
[-] BO : Fix notice error in adminPayment tab
[-] BO : Fix notices "undefined variables/indexes" when exporting statistic data to CSV
[-] BO : Fix template mail for new address layout system
[-] BO : Fixed #PSCFI-1624 - Extra forward slash
[-] BO : Fixed #PSCFI-2046 - select box was empty when json_decode missing librarie
[-] BO : Fixed #PSCFI-985 - notice about image type fixed
[-] BO : Fixed PSCFI-1634 / PSCFI-1664 - colorpicker fix
[-] BO : Fixed a bug occurring while updating an employee information
[-] BO : Fixed a bug related to the "Address 2" not shown on order page
[-] BO : Fixed bug #PSCFI-1403 - Auto-reset default or selected currency after paypal payment.
[-] BO : Fixed bug #PSCFI-1405 - robots.txt was a too strict with pagination
[-] BO : Fixed bug #PSCFI-1547 - Image paths were hard-coded in the generateHtaccess function
[-] BO : Fixed bug #PSCFI-1684 - Tinymce didn't initialize in IE8 because of an extra comma at the end of the function
[-] BO : Fixed bug #PSCFI-1707 - Depending on the environment png image are concider as text/plain type.
[-] BO : Fixed bug #PSCFI-1769 - The id number of reason were not the same as in the table.
[-] BO : Fixed bug #PSCFI-1785 - Display problem when the content was too long.
[-] BO : Fixed bug #PSCFI-1814 - Remove blank lines on robot.txt
[-] BO : Fixed bug #PSCFI-1840 - Bugs on module trakingfront and referrer stat on the BO
[-] BO : Fixed bug #PSCFI-1840 - Bugs on module trakingfront and referrer stat on the BO
[-] BO : Fixed bug #PSCFI-1849. Rules pattern for ignored key.
[-] BO : Fixed bug #PSCFI-1860 - Loyalty point must be calculated by using the cart total (and not product by product)
[-] BO : Fixed bug #PSCFI-2011 - you can now change your language on the product page
[-] BO : Fixed bug #PSCFI-2032 - Ajax problem (call dirrectly on admin/tab)
[-] BO : Fixed bug - Few modules and sections missing when filtering
[-] BO : Fixed bug - The phone field was missing for guest checkout
[-] BO : Fixed bug - allowed to empty "Shop domain name" and "Shop domain name for SSL"
[-] BO : Fixed bug PSCFI-1056 - distant image is now https compliant
[-] BO : Fixed bug PSCFI-1970 - Hidden order statuses were not shown in admin panel "Customer" page
[-] BO : Fixed bug PSCFI-1985 - URL like "/en" were not redirecting to the homepage
[-] BO : Fixed bug PSCFI-1989 - Bad regex in errors translation tool
[-] BO : Fixed bug PSCFI-2018 - Custom required field were not inserted properly into the DB
[-] BO : Fixed bug on product accessories
[-] BO : Fixed bug with new status in order list
[-] BO : Fixed small bug on switch entity to import
[-] BO : Fixed the gap on the merchandise return table (<table>)
[-] BO : Fixed the position of the button save on the merchandise return edit form
[-] BO : Modules installation/uninstallation does not work
[-] BO : Mysql error during new pack creation
[-] BO : New view with new feature to clear / reset / use a default layout
[-] BO : PSCFI-1847 - Product combinations generator tax incl & tax excl
[-] BO : Remove undefined function 'elog'
[-] BO : Translations tab was not using Tools::file_get_contents and had no timeout
[-] BO : Two same error message when trying to delete categorie and nothing was selected
[-] BO : Update cache_default_attribute when you duplicate a product
[-] BO : Using _DB_PREFIX_ to prefix table name
[-] BO : When you translate mails, end of line is now correct
[-] BO : Wrong validator for SMTP password.
[-] BO : Wrong validator for the minimal field
[-] BO : Wrong validators for the delimiters
[-] BO : Wrong validators for the delimiters
[-] BO : Wrong validators for the width, height, depth and weight of a product
[-] BO : add of a Javascript verification in product's declination tab to check that only group of attributes can be used per declination #PSCFI-1813
[-] BO : added "$this->author = 'PrestaShop';" to the Dibs module
[-] BO : added a condition in order to forbid the access to the main PHP file by URL
[-] BO : avoid crashing the product listing page when you have not enough memory to resize the thumbnails
[-] BO : fix .htaccess specific configuration (pSql was called twice in Configuration class on insert) #PSCFI-1976
[-] BO : fix of a double slash in admin icons img path #PSCFI-1912
[-] BO : fix of a rare bug in .htaccess generation if a category name is composed only of numbers, with multilang disactivated #PSCFI-1925
[-] BO : fix of display order of billing / shipping addresss in PDF invoices #PSCFI-1922
[-] BO : fix of htaccess specific configuration (\r and \n are not stored anymore as string)
[-] BO : fix some notices in product customization page when some languages are disabled
[-] BO : fix upload of images for products on IIS servers
[-] BO : fixed a part of PSCFI-1746 (Add customer name and Fix secure key is empty
[-] BO : fixed bug "save and preview" on product page redirect was broken. Now it's work fine
[-] BO : fixed bug #1302 - Bad step number
[-] BO : fixed bug #PSCFI-1354 - default attribute cache was not updated
[-] BO : fixed bug #PSCFI-1432 - Import encoding iso-8859-1 doesn't work
[-] BO : fixed bug #PSCFI-1524 - Browser cache & compression has a caution sign and goes to the AdminGenerator page
[-] BO : fixed bug #PSCFI-1539 - BO tabs problem after lang change
[-] BO : fixed bug #PSCFI-1564 - CSV import of feature value reuses custom values
[-] BO : fixed bug #PSCFI-1583
[-] BO : fixed bug #PSCFI-1591 - StatusCMS doesn't work
[-] BO : fixed bug #PSCFI-1596 - Second level category is not sorted correctly
[-] BO : fixed bug #PSCFI-1599 - bug fixed when you edit the preference of an employee
[-] BO : fixed bug #PSCFI-1616 - Imported categories are shown duplicates on FO
[-] BO : fixed bug #PSCFI-1748 - mandatory states does not have a star denoting mandatory next to it
[-] BO : fixed bug #PSCFI-1766 - When moving category from parent to another parent, it keeps its position => position duplicates
[-] BO : fixed bug #PSCFI-1772 - Clicking checkmark does not disable Tax Rule
[-] BO : fixed bug #PSCFI-1797 - product specific price not deleted during import
[-] BO : fixed bug #PSCFI-1807 - Product details export displays 0 instead of product name
[-] BO : fixed bug #PSCFI-1812 - CSV Import bug - wrong nice URLs
[-] BO : fixed bug #PSCFI-1881 - SSL Security Warning in IE8 PS V 1.4.0 BO Login
[-] BO : fixed bug #PSCFI-1936 - Cart::delete() fails to preserve db referential integrity
[-] BO : fixed bug #PSCFI-1965 - svn6545 -- inverted logic within AdminCarts::_displayDeleteLink()
[-] BO : fixed bug #PSCFI-1971 - it is now impossible to add downloadable products to a pack.
[-] BO : fixed bug #PSTP-15 - Wrong text for kilobytes
[-] BO : fixed bug : AdminImport no longer uses Product::getIndexedCategories but Product::getProductCategories
[-] BO : fixed bug admin tab filter
[-] BO : fixed bug on module filters
[-] BO : fixed bug where imported csv content was not correctly encoded.
[-] BO : fixed bug while add or updating without amount for a voucher in AdminDiscounts
[-] BO : fixed bug while add or updating without voucher type in AdminDiscounts
[-] BO : fixed bug while updating without category for a voucher in AdminDiscounts
[-] BO : fixed bug with corrupted db backup gzip archive
[-] BO : fixed display of error in catalog attachments when a file size is too big
[-] BO : fixed display of phone data in order #PSCFI-1862
[-] BO : fixed table product_attribute_image not being updated when image is deleted
[-] BO : module XML config files stability improved
[-] BO : performance optimizations
[-] BO : performance optimizations
[-] BO : remove an alone char 's'
[-] BO : resized images are now chmoded 644 #PSCFI-1498
[-] BO : stats modules can now display graphs larger than 1 year
[-] BO : the errors when you try to copy a module from prestashop addons are now more detailed
[-] BO : you can now try to extract zip file even if you do not have ArchiveZip on your server
[-] BO : you do not need to configure ranges anymore with free carriers
[-] BO :Fix unavailable global issue and use instead of it the configuration variable
[-] Classes : Add personalized styles to a generated address layout
[-] Classes : fixed bug #PSCFI-1272 - Fatal Error Fatal Error on Payment Return - 1.4.0.17 upgrade from 1.3.7.0 (Secure Keys)
[-] Classes : fixed bug #PSCFI-1477 - PaymentModule.php price comparing error
[-] Classes : fixed bug #PSCFI-1691 - svn6062 payment -> taxes set to NOT show tax line in cart but it does anyway.
[-] Classes : fixed bug #PSCFI-1737 - Incorrect test on numRow() in Cart class
[-] Classes : fixed bug #PSCFI-1738 - Incorrect cacheKey in Cart::getNbProduct()
[-] Classes : fixed bug #PSCFI-1800 - after purchasing a product you cannot download because you have to login.
[-] Classes : fixed bug #PSCFI-1966 - Attribute::getAttributeMinimalQty
[-] Classes : fixed bug on Payment validation with using of Specific price (Country criteria)
[-] Classes : fixed bug on duplicate method in Cart class
[-] Classes : small bug fixed on "stores" field
[-] Core : Autoload is now compliant with older classes name
[-] Core : decrypted data are now truncate to the size of the original plain text (Rijndael & Blowfish)
[-] Core : fixed bug #PSCFI-1529 - Forgot password link is empty
[-] Core : fixed bug #PSCFI-1546 - need_instance is not configurable
[-] Core : fixed bug on update of customer address
[-] Core : fixed cache_default_attribute issue
[-] Core : fixed regexp that crashed IIS when the URL was too long (and a few others)
[-] MO : Add a method to clean char accented
[-] MO : Adding help and fix some details on Moneybookers module
[-] MO : Bug #PSCFI-1681 - Correction part1. Rows in blocklist_lang were never removed when a link was deleted.
[-] MO : Bug #PSCFI-1681 - Correction part2. * symbol was missing next to the URL field.
[-] MO : Bug concerning getShopUrl on this module due to no retrocompatibility in 1.4 has been fixed
[-] MO : Bug fixed #PSCFI-1054 - The error "Invalid token" on PayPal module is now well handled
[-] MO : Bug fixed #PSCFI-1138 - Fixing address problem in PayPal module
[-] MO : Bug fixed #PSCFI-1138 - Refixing, only one address can be send, so the delivery and billing address will be the same
[-] MO : Bug fixed #PSCFI-1754 - Fedex module does not need cookie anymore to calculate shipping cost
[-] MO : Bug fixed #PSCFI-1754 - UPS module does not need cookie anymore to calculate shipping cost
[-] MO : Bug fixed #PSCFI-1754 - USPS module does not need cookie anymore to calculate shipping cost
[-] MO : Bug fixed #PSCFI-1798 - Fedex module had the wrong gateway address (Thanks Will :)
[-] MO : Bug fixed #PSCFI-1879 - Fedex Carriers does not appear when there is too much products in the cart (thanks Thomas :D)
[-] MO : Bug fixed #PSCFI-1952 - Paypal did not handle logout properly on submit.php
[-] MO : Bug fixed #PSCFI-738 - UPS, USPS and Fedex module had an error during install when the default language is not fr or en
[-] MO : Bug fixed PayPal module - The module had an error on PHP 5.2 and lower
[-] MO : Bug fixed PayPal module was not working properly when the product costs more than 1000 $ because of number_format (sigh)
[-] MO : Bug fixed concerning smarty template on Treepodia module
[-] MO : Bug fixed on PayPal module where there is no tax
[-] MO : Change wordings and small logo on PayPal Module
[-] MO : Changing url in Dibs module
[-] MO : Fix SSL issues
[-] MO : Fix a bad displaying of the error messages
[-] MO : Fix a crach during the payment process when the module isn't available to be use in restricted country
[-] MO : Fix bad iso code country verfication
[-] MO : Fix on Twenga Module (problem with object require path)
[-] MO : Fix one page checkout with a broken display. Twenga use' document.write' and this delete the page content using with an event (ex onclick)
[-] MO : Fixed bug #PSCFI-1574 - When only one language was activated iso code was still used.
[-] MO : Fixed bug #PSCFI-1617 - Sitemap module produced duplicate rows.
[-] MO : Fixed bug #PSCFI-1802 - Etra double quote for the $pageTrack variable
[-] MO : Fixed bug #PSCFI-1808 - Can not change the percentage of voucher
[-] MO : Fixed bug #PSCFI-1864 - Fixed bug on ganalytics trackink step order when using url rewriting
[-] MO : Fixed bug #PSCFI-1930 - ajax call to unexistant url on customer address updating
[-] MO : Fixed bug #PSCFI-1945 - Bad cart total calculation on paypal module when having an article qty > 1
[-] MO : Fixed bug #PSCFI-2004 - On using special secures keys in dibs (like %) the module do not work.
[-] MO : Fixed bug - Don't display all carriers. Now it is correct
[-] MO : Fixed bug - Undefined variable ids.
[-] MO : Fixed bug PSCFI-1754, Google Checkout are now correctly taking in consideration
[-] MO : Fixed bug PSCFI-2025 when loading the carrier hook without have selected a mondial relay carrier, this one tryed to load google map and other inormation...
[-] MO : Fixed bug when saving a criteria without name in the default language on the module "Product comment"
[-] MO : Fixed open basedir
[-] MO : Hiding password in Paysafecard module
[-] MO : Improve rapidity of the module followup.
[-] MO : Loyalty - After an upgrade, categories were not initialized for the loyalty module
[-] MO : Not correct display of "date_add" for the discounts
[-] MO : Ogone fixed shaOut sign generation and exclude bad key used, add dirname() for all smarty include
[-] MO : On updating PS, module editorial add iphone image on the home page even if the images was removed.
[-] MO : Prevent bug #PSCFI-1768
[-] MO : Removing cookie on eKomi which was not working with paiement card module
[-] MO : Subscribe link paypal updated
[-] MO : Translations fixed on Paypal module
[-] MO : Twenga fix try catch error
[-] MO : Twenga, fix tracking ht price
[-] MO : blocklayered (same as revision 6319)
[-] MO : css changes not done
[-] MO : fix an error in blocklayered module with weights data in sql query
[-] MO : fix display of price in gCheckout module on confirm template #PSCFI-1949
[-] MO : fix display of supplier / manufacturer node in sitemap.xml (gsitemap module) if we want to hide them #PSCFI-1893
[-] MO : fix on some spurious slashes after constant PS_MODULE_DIR #PSCFI-1964
[-] MO : fix smarty $minimal_quantity notice in blocklayered
[-] MO : fixed a bug in mailalert with bad trigger of notifications ; added the updateQuantity hook in product->stockMvt method + clean of this hook call in some places #PSCFI-1829
[-] MO : fixed bug #PSCFI-1117 - Layered navigation block - cannot cancel color filter
[-] MO : fixed bug #PSCFI-1352 - oscommerce import module now supports the encryption password of the earlier version 2.3 of oscommerce
[-] MO : fixed bug #PSCFI-1410 - Socolissimo module fail validation w/ error 998
[-] MO : fixed bug #PSCFI-1589 - fixed hard coding prefix and Class name.
[-] MO : fixed bug #PSCFI-1762 - Compatibility problem Theme Installator with Prestashop 1.3.1
[-] MO : fixed bug #PSCFI-1856 - Layered module "go to the top of the page"
[-] MO : fixed bug #PSCFI-1856 - better fix (e.preventDefault() allow use of chained JS events)
[-] MO : fixed bug into statssearch module with keywords
[-] MO : fixed bug on crossselling and productscategory module after an upgrade
[-] MO : fixed bug on oscommerce import gender is correctly import now
[-] MO : fixed bug on oscommerce import gender is correctly import now
[-] MO : fixed bug on shopImport - now old identifier are drop before import
[-] MO : fixed bug on shopImport with payment method (FATAL ERROR)
[-] MO : fixed bug on socolissimo with one page checkout
[-] MO : fixed bug table name different from the identifier (id_link => id_blocklink)
[-] MO : fixed display of wishlist send form when HTML code is minified #PSCFI-1640
[-] MO : fixed issue with blockcms module after an update of Prestashop
[-] MO : improving of comment for the deletion of PaypalAPI module
[-] MO : modules exceptions stability improved
[-] MO : no longer go to the top of the page when click on a filter toggle icon in module blocklayered
[-] MO : tm4b - missing include on hookUpdateQuantity
[-] MO : when cancel enabled filters, checkbox no longer disappear
[-] WS : Add missing headers in Webservice classes
[-] WS : Bug PSCFI-1451 fixed
[-] WS : Bug PSCFI-1473 fixed.
[-] WS : Bug fixed PSCFI-1407
[-] WS : Bug fixed PSCFI-1449
[-] WS : Bug fixed for hours field of store
[-] WS : Bug fixed in schema synopsis
[-] WS : Code cleaning
[-] WS : Error message changed
[-] WS : Fix association in Cart entity
[-] WS : Fix bug in ImageManagement
[-] WS : Fix update/add for TranslatedConfiguration entity.
[-] WS : Fixed bug PSCFI-1091 and language node name
[-] WS : Fixed bug PSCFI-1450
[-] WS : Fixed bug PSCFI-1731
[-] WS : Fixed bug on product class
[-] WS : Fixed setter in Order
[-] WS : allow one id for a language filter in the recommanded format (between brackets). [-] WS : delete an unnecessary variable in images management
[-] WS : allow to display and calculate specific price field for combinations entity
[-] WS : allow to display specific price field
[-] WS : bug PSCFI-1779 is fixed
[-] WS : bug PSCFI-1779 is fixed
[-] WS : bug PSCFI-1790 is fixed
[-] WS : bug PSCFI-1791 is fixed
[-] WS : bug PSCFI-506 is fixed
[-] WS : date_add and date_upd management
[-] WS : fix a E_STRICT php error
[-] WS : fix price calculation
[-] WS : fixed bug for synopsis detail : PSCFI-1417
[-] WS : minor bugs are fixed, [-] Install : delete unusable values in configuration_lang table if exists
[-] WS : set the product_attribute in price calculation for combinations entity
[-] WS : use configuration variable by default for decimals
[-] WS : use configuration variable by default for ecotax
[-] PDF : Bug Fixed #1817 - Group discount applied twice
[-] PDF : Incorrect unit price = 2 ecotax
[-] TR : Bug fixed #1792 (1.4.1) - Allow to apply or not shipping costs and additional shipping costs on carriers
[-] TR : Fixed #PSTP-7 - se.xml iso code fix
[-] TR : Fixed wrong url-rewrite for italian version (identica)
[-] TR : French translations added
[-] TR : Italian et German translations updated
[-] TR : Maj german version
[-] TR : Maj italian version
[-] TR : Thanks to Michael Bangiev for all german translation fix
[-] TR : missing translation for error message (config)
[-] TR : updated italian versions from language pack
[-] TR : updated italian versions from language pack, part 2
####################################
# v1.4.1.0 - 6030 (2011-04-21) #
####################################
Added Features:
[+] Installer : Adding address format table
[+] Installer : Thanks to Michael Bangiev for german installer translation \!
[+] Installer : When upgrading, you can now automatically desactivate non-native modules
[+] Installer : added link to the online theme validator
[+] FO : Adding address formating for stores
[+] BO : Adding address formating
[+] BO : Adding address formating
[+] BO : Adding address formating
[+] BO : Adding address formating
[+] BO : Adding address formating
[+] BO : Adding address formating
[+] BO : added methods to enable/disable one or more module by name
[+] BO : added static method to get non native module list in ModuleCore class
[+] CORE : allow to load interface with the autoload
[+] WS : add column in the PREFIX_webservice_account table
[+] TR : translation wording
Improved/changed features:
[*] Project : added new tinyMCE version
[*] Project : remove old tinyMC version
[*] INSTALLER : Can manage HTML in preactivation text
[*] Installer : added readme_it, readme_de, and CHANGELOG to the file-to-delete list
[*] FO : #PSCFI-1537 corrects address block error
[*] FO : Cached queries
[*] FO : Display label can desactivated + Tax & Shipping simulator
[*] FO : Fixed link to delete customer product picture when friendly url + canonical are activated
[*] FO : Using geocoding for itinerary
[*] FO : corrects smarty2 compliance
[*] FO : in category view, products for which the default combination is out of stock but other combinations are still available no longer display an 'Out of stock' message.
[*] FO : in product view, accessories now display a message if they are out of stock or out of the default combination.
[*] FO : setMedia called now only in init()
[*] BO : Adding store infos templatization
[*] BO : Adding store infos templatization
[*] BO : keeping cart status on refresh
[*] BO : #8341 Wording: changing depth and package spelling
[*] BO : #8345 Deleting unused vars
[*] BO : #8406 Adding method to get protocol
[*] BO : #8406 removing hard coded http
[*] BO : #8419 Adding attachment name check
[*] BO : #8438 corrects use of uninstanciated value
[*] BO : #8440 restores quantity display
[*] BO : #8459 filtering arrow keys
[*] BO : #8486 changing getProtocol
[*] BO : #8486 changing getProtocol
[*] BO : #8569 removing bad redirect & cookie path for ajaxfilemanager
[*] BO : #8693 Adding back to category link on add doc attachment
[*] BO : #PSCFI-1294 wording: corrects Pproduct
[*] BO : Adding market place group to AdminModules
[*] BO : Adding missing else case
[*] BO : Adding store infos templatization
[*] BO : Adding translate for contact, Bug tracker, forum
[*] BO : Corrects die error is state is used
[*] BO : cleaning
[*] BO : improve loading of home page of Back office
[*] BO : now admin tabs defined in module use now translation in their module directory
[*] BO : orders don t disappear anymore if authorized localhost client
[*] BO : revert: Adding missing else case
[*] BO : reverting
[*] BO : reverting wording
[*] BO : setting re-ordeing regexp to 99 max
[*] BO : unsetting var after use
[*] BO : updating iso state code according to ISO_3166-2
[*] BO : wording
[*] MO : Bug fixed #PSCFI-1370 - Adding possibility to choose calcul mode for shipping cost in USPS module
[*] MO : Display option for eKomi module
[*] MO : added weight filter - removing the restriction on cache table
[*] MO : improvements on carriercompare (Shipping estimation) module
[*] MO : themeinstallator - exported themes archives now have a random md5 filename
Fixed bugs:
[-] Project : Fixed bug #PSCFI-1208 - MODULE_DIR (relative path) should be replaced with PS_MODULE_DIR (full path)
[-] Project : fixed json_encode and json_decode calls
[-] INSTALLER : Bug fixed on checkbox preactivation system
[-] INSTALLER : Preactivation prechecked bug has been fixed
[-] Installer : Bug Fixed #8585 - Wrong currency for reduction inserted to ps_specific_price
[-] Installer : Bug Fixed #PSCFI-1266 - 1.3 price reductions not applied to all groups on 1.4 upgrade
[-] Installer : Fixed #PSCFI-1466 - undefined constant _PS_VERSION_ was used instead of $oldversion
[-] Installer : Fixed #PSCFI-1496 - var name corrected in desactivatecustommodule.php
[-] Installer : Fixed #PSCFI-1500 - PREFIX_ / ps_ in installer
[-] Installer : Fixed about-us german url rewrite
[-] Installer : fixed bug #8477 - German friendly URLs have uppercase letters
[-] Installer : fixed bug #PSCFI-1381 - svn5784 upgrade sql error and cannot complete upgrade - Cannot redeclare alter_cms_block() previously declared
[-] Installer : fixed bug #PSCFI-1500
[-] Installer : fixed bug if CMS module is not installed
[-] FO : #PSCFI-1374 Fixed a bug concerning the cart without taxes
[-] FO : Bug Fixed #8315 - Incorrect tax for counties
[-] FO : Bug Fixed #PSCFI-1459 - Problem in tax summary (tax excl + ecotax)
[-] FO : Bug Fixed #PSCFI-1460 - Combination + overriden EcoTax
[-] FO : Bug Fixed #PSCFI-1516 - Incorrect cache key in price calculation
[-] FO : Bug fixed #8293 - Wrong price round for product
[-] FO : Bug fixed default picture missing in product comparison
[-] FO : CSS and JS files not available (404) are now empty, haven't code html of 404 page of Prestashop
[-] FO : Fixed #7752 - now customer image will be deleted if they remove product they attached to a product
[-] FO : Fixed #8418 HTTPS issue with _SERVER['HTTPS']
[-] FO : Fixed #PSCFI-1118 add to cart with customization
[-] FO : Fixed #PSCFI-1215 blockbestsellers now correctly constructs links to best-sale page
[-] FO : Fixed #PSCFI-1220 wrong call to setMedia()
[-] FO : Fixed #PSCFI-1269 undefined variable
[-] FO : Fixed #PSCFI-733 - fatal error when disabling shop
[-] FO : Fixed bug #PSCFI-1201 - Product quantities were not displayed when they should be.
[-] FO : Fixed bug #PSCFI-1373 - Bug with the update function when an id_lang was passed to the construct function.
[-] FO : Fixed bug on ssl pages
[-] FO : Fixed login issue when special ssl configuration
[-] FO : Hours can now be translated for the store locator
[-] FO : Remove debug comment
[-] FO : Smarty 2 compatibility
[-] FO : Use default country for default taxes
[-] FO : deleted the string "!" which didn't make sense in the sentence "Assign an address title for future reference".
[-] FO : fixed a bug when a customer have on his cookie a disabled currency
[-] FO : fixed bug #7991 - fixed a bug where the 'add to cart' button was still active for accessories on product pages when they are out of stock, and fixed a bug where out of stock message for products was not displayed.
[-] FO : fixed bug #8042 - logo and favicon were not cached properly
[-] FO : fixed bug #8363 - Availability in cart (green dot) wrong for products with stock 0
[-] FO : fixed bug #8389 - Category page not work
[-] FO : fixed bug #8436 - State select is invalid HTML
[-] FO : fixed bug #8479 - Smarty error on lines 147 and 168 of themes/prestashop/address.tpl
[-] FO : fixed bug #8492 - Error in cms.php?id_cms_category=1
[-] FO : fixed bug #8536 - Incompleted end tag
[-] FO : fixed bug #8555 - 1.4.0.17 h1 overlaps a background bar
[-] FO : fixed bug #8577 - shipping bug order OPC
[-] FO : fixed bug #8631 - CMS page links to other languages ignores URL rewrite (always unfriendly URL)
[-] FO : fixed bug #PSCFI-1290 - One Page Checkout calculates gift_price in two different ways - one right, one wrong
[-] FO : fixed bug #PSCFI-1296 - cart_summary is not updated after deleting items
[-] FO : fixed bug #PSCFI-1303 - Tag pagination with specific characters
[-] FO : fixed bug #PSCFI-1315 - Bug authentication and not installed newsletter module
[-] FO : fixed bug #PSCFI-1317 - 5 step checkout is missing address information in checkout window
[-] FO : fixed bug #PSCFI-1369 - svn5760 typo ("mob") in ajax.php
[-] FO : fixed bug #PSCFI-1395 - PackCore static function "IsInStock" doesn't work for packs
[-] FO : fixed bug #PSCFI-1400 - no css for search pages
[-] FO : fixed bug #PSCFI-1475 - An error occured because of an undefined variable $tag. The variable has been renamed as $search_tag to fix it.
[-] FO : fixed bug #PSCFI-1489 - Clicking on "Add to cart" - Button disables all "Add to cart"
[-] FO : fixed bug #PSCFI-151 - Full category list displays then shrinks
[-] FO : fixed bug #PSCFI-1543 - theme: "out of stock" condition may not be EXACTLY zero
[-] FO : fixed bug #PSCFI-1548 - Error in getPacksTable sql query
[-] FO : fixed bug PSCFI-1455 - Class "warning-inline" doesn't exist. Changed to "warning_inline"
[-] FO : fixed bug live edit now display correctly
[-] FO : fixed many call to unexisting css and js file after an update
[-] FO : fixed stylesheet bug and CCC feature
[-] FO :fixed a translation bug in French
[-] BO : Bug Fixed #PSCFI-1481 - IncludeTab and active action
[-] BO : Fix on preactivation process
[-] BO : Fixed #1205 error on updating product
[-] BO : Fixed #8513, #7932, #8040 about mail translation loss, thanks to sorsand rodt
[-] BO : Fixed #PSCFI-1191 - url rewrite for home page
[-] BO : Fixed #PSCFI-1222 - product order
[-] BO : Fixed #PSCFI-1394 bug while cleaning connection pages
[-] BO : Fixed #PSCFI-1485 - strict standard
[-] BO : Fixed #PSCFI-1512 - thanks to Melinda for fixing the filtering module system :)
[-] BO : Fixed #PSCFI-1517 - colorpicker.js issue on firefox 4
[-] BO : Fixed #PSCFI-1518 - now you can translate modules in a custom theme using the AdminTranslations tools
[-] BO : Fixed #PSCFI-858 upload flag for a language
[-] BO : Fixed #PSCFI-999 - generate a correct htaccess for cms and category cms
[-] BO : Fixed 8452 - mysql_close is not called if invalid link ressource
[-] BO : Fixed bug #PSCFI-1254 - Filtering manufacturers by activity would generate an incorrect sql query
[-] BO : Fixed bug - sql error when duplicate product
[-] BO : Fixed login issue when special ssl configuration
[-] BO : Localization pack can now be imported locally if no internet connection is available
[-] BO : Now .tpl are translate in root theme folder
[-] BO : Now when a language is added, the translation in the default language is automatically copied to the new language.
[-] BO : Rouding issues with float 149.42 - 149.42 = -0.0000000000012
[-] BO : added array_change_key_case for module translation compatibility
[-] BO : fixed #PSCFI-1207 - language pack import not possible with safari 5 on osx 10.6.6 and 10.6.7
[-] BO : fixed bad redirection
[-] BO : fixed bug #8391 - Currency symbol not shown in admin/products
[-] BO : fixed bug #8393 - Pagination was broken.
[-] BO : fixed bug #8414 - meta-keywords saving error
[-] BO : fixed bug #8563 - BO: change country to one without states
[-] BO : fixed bug #8576 - Illegal offset type in admin modules page
[-] BO : fixed bug #8636 - Fatal error during address importation
[-] BO : fixed bug #8649 - Suppliers Description validates wrong
[-] BO : fixed bug #PSCFI-1356 - Unknown object in AdminProduct due to typo
[-] BO : fixed bug #PSCFI-1372 - svn5757 tinymce.inc.js misses some plugins
[-] BO : fixed bug #PSCFI-1380 - sorting sub-categories by name in the table make back to parent category
[-] BO : fixed bug #PSCFI-1429 - Deleting products does not remove image files
[-] BO : fixed bug #PSCFI-1431 - Import error if html tag in CSV
[-] BO : fixed bug #PSCFI-1461 - Product updateDefaultAttribute function - small typo
[-] BO : fixed bug #PSCFI-1468 - Unable to delete Tax
[-] BO : fixed bug #PSCFI-1469 - BO Modules UI wrong collapse icon
[-] BO : fixed bug #PSCFI-1471 - UK localization xml was missing
[-] BO : fixed bug #PSCFI-1523 - Bug in saving mail subjects between translations
[-] BO : fixed bug #PSCFI-1560 - Carrier filter in AdminCarts Tab
[-] BO : fixed bug PSCFI-1557 - If a product's name include a comma, it cannot be added to a "pack" product
[-] BO : fixed bug in stock movements where clicking 'reset' would display an error.
[-] BO : fixed bug interface in AdminCountries tab
[-] BO : fixed bug on modules autocomplete search
[-] BO : fixed bug on modules filters
[-] BO : fixed bug scollTo bug when install new module
[-] BO : fixed mail subject translation (utf8, htmlentities, quotes)
[-] BO : fixed notice errors on product comaprison feature
[-] BO : install fix (now works)
[-] BO : liveEdit when open_basedir restriction
[-] BO : module can't be now transplanted anywhere, just where it can
[-] BO :fixed a translation bug, name files are translated with the content
[-] Classes : fixed bug #8599
[-] Classes : fixed bug #PSCFI-1358 - Undefined index in Tools::displayasdeprecated
[-] Classes : fixed bug #PSCFI-1358 - Undefined index in Tools::displayasdeprecated (another one)
[-] Classes : fixed bug #PSCFI-1384 - error in Class configuration
[-] Classes : fixed bug #PSCFI-1391 - "Reset" link on "Categories block v2.0" causes "Max depth" to be lost
[-] Classes : you can define encoding to strlen() method of Tools class
[-] Core : fixed bug #PSCFI-1397 - .htaccess in /download is missing
[-] Core : fixed little bug on validation method for iso code of state
[-] MO : Bug fixed #PSCFI-1370 - Fix on USPS module for FirstClassMailType
[-] MO : Translations fixed on module Twenga
[-] MO : TrustedShops - Integration certificate enable features
[-] MO : TrustedShops - Missing {literal} tags
[-] MO : TrustedShops, Fix a notice when a certificat doesn't exist for a language, add new translations and fix a image display
[-] MO : add a sentence in module producttooltip in order to indicate that statdata module must be active (PSCFI-1206)
[-] MO : change the way to save the serialize array, use Tools::htmlentitiesUTF8 for save in database.
[-] MO : fixed bug #8374 - Featured Products block issue
[-] MO : fixed bug #8544 - Mail alert bug
[-] MO : fixed bug #8567 - Search Stats not working on 1.4.0.17
[-] MO : fixed bug #8581 - BlockLink - SQL Error
[-] MO : fixed bug #PSCFI-1321 - _clearCache error in blockcategories
[-] MO : fixed bug #PSCFI-1378 - Socolissimo validate.php collect wrong data
[-] MO : fixed bug in template for productcomment module
[-] MO : fixed bug on DejaLa module
[-] MO : incorrect index array in followup.php for email
[-] MO : rename field id_block_cms to id_cms_block
[-] WS : Fixing PHP 5.3 compatibility bug
[-] WS : add the error number when a webservice error is set
[-] TR : Fixed german translation
[-] TR : fix german translation, thanks to the community
[-] TR : fixed fr mispelling at first login (please delete install dir and move admin)
[-] LO : Currency format
Deprecated methods: