-
Notifications
You must be signed in to change notification settings - Fork 31
/
CHANGELOG_AUTO.md
3081 lines (2963 loc) · 320 KB
/
CHANGELOG_AUTO.md
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
# Change Log
## [Unreleased](https://github.com/opencart/opencart/tree/HEAD)
[Full Changelog](https://github.com/opencart/opencart/compare/2.1.0.1...HEAD)
**Closed issues:**
- Discussion: Links and Labels for the View generated in Controller [\#3752](https://github.com/opencart/opencart/issues/3752)
- images with symbol \# in name not show, OC 2.1.0.1 [\#3751](https://github.com/opencart/opencart/issues/3751)
- Config.php bad setup [\#3749](https://github.com/opencart/opencart/issues/3749)
- Admin Dashboard is all jumbled up [\#3746](https://github.com/opencart/opencart/issues/3746)
- Error calculation of totals order is updated in the admin panel [\#3743](https://github.com/opencart/opencart/issues/3743)
- image resizing and transparency [\#3741](https://github.com/opencart/opencart/issues/3741)
- Install error [\#3740](https://github.com/opencart/opencart/issues/3740)
- Error on editing account address [\#3738](https://github.com/opencart/opencart/issues/3738)
- When using new theme, it still uses the default css file [\#3737](https://github.com/opencart/opencart/issues/3737)
- Image resizing [\#3736](https://github.com/opencart/opencart/issues/3736)
- Image resize tool on white background, create gray lines or gray pixels [\#3734](https://github.com/opencart/opencart/issues/3734)
- Admin Menu Controller - Broken Customer links [\#3733](https://github.com/opencart/opencart/issues/3733)
- Fatal error: Class 'Factory' not found in /opencart/upload/install/index.php on line 30 [\#3729](https://github.com/opencart/opencart/issues/3729)
- opencart upgrade Issue [\#3728](https://github.com/opencart/opencart/issues/3728)
- opencart upgrade [\#3727](https://github.com/opencart/opencart/issues/3727)
- Opencart Simple register and simple checkout . [\#3726](https://github.com/opencart/opencart/issues/3726)
- error in Xtensions-Best Checkout and Customer Solution extension [\#3725](https://github.com/opencart/opencart/issues/3725)
- svg file resize issue [\#3724](https://github.com/opencart/opencart/issues/3724)
- XSS Vulnerability in OpenCart 2.1.0.1 [\#3721](https://github.com/opencart/opencart/issues/3721)
- EHLO and RCPT errors on mail.php [\#3720](https://github.com/opencart/opencart/issues/3720)
- Affiliate Change [\#3719](https://github.com/opencart/opencart/issues/3719)
- Email address regular expression is wrong everywhere. [\#3718](https://github.com/opencart/opencart/issues/3718)
- Error upgrade [\#3717](https://github.com/opencart/opencart/issues/3717)
- Issues with edit/delete order [\#3716](https://github.com/opencart/opencart/issues/3716)
- PHP Notice: A non well formed numeric value encountered in /system/library/mail.php on line 172 [\#3712](https://github.com/opencart/opencart/issues/3712)
- I want to add Update Button under common/cart without Refreshing [\#3709](https://github.com/opencart/opencart/issues/3709)
- FEATURE REQUEST [\#3707](https://github.com/opencart/opencart/issues/3707)
- Product attribute error [\#3706](https://github.com/opencart/opencart/issues/3706)
- Error in addImage\(\) of banner\_form.tpl \(admin\view\template\design\) [\#3705](https://github.com/opencart/opencart/issues/3705)
- A match of the Shipping Address City, State, and Postal Code failed [\#3704](https://github.com/opencart/opencart/issues/3704)
- Security possible bug 2.1.0.1 mysql\_real\_escape\_string deprecated [\#3702](https://github.com/opencart/opencart/issues/3702)
- cannot login to api 2.1.0.1 [\#3701](https://github.com/opencart/opencart/issues/3701)
- Google captcha with telephone [\#3700](https://github.com/opencart/opencart/issues/3700)
- opencart meta description meta tag closing tags [\#3697](https://github.com/opencart/opencart/issues/3697)
- Admin =\> System =\> Settings =\> Edit =\> Google tab is removed. [\#3694](https://github.com/opencart/opencart/issues/3694)
- Permission issues while installing \(Step 2\) [\#3693](https://github.com/opencart/opencart/issues/3693)
- How to install and configure OpenCart on NGINX [\#3692](https://github.com/opencart/opencart/issues/3692)
- Error uploading file option in product detail page [\#3690](https://github.com/opencart/opencart/issues/3690)
- Account/account "Undefined variable: header" [\#3688](https://github.com/opencart/opencart/issues/3688)
- Empty \<title\> at static information pages 2.1.0.1 [\#3687](https://github.com/opencart/opencart/issues/3687)
- $shipping\_method in orders [\#3685](https://github.com/opencart/opencart/issues/3685)
- how to check whether ocmod is working properly or not [\#3683](https://github.com/opencart/opencart/issues/3683)
- Bug in catalog/controller/feed/google\_base.php [\#3682](https://github.com/opencart/opencart/issues/3682)
- All shipping methods are not visible in checkout/checkout page even if they are enabled and selected from "checkout/cart page" shipping estimate. Only flat rate shipping is visible. Please help. I am using latest oc 2.1.0.1 and multimerch free package [\#3681](https://github.com/opencart/opencart/issues/3681)
- Open cart unable to access admin [\#3680](https://github.com/opencart/opencart/issues/3680)
- Error: Could not load model /var/www/html/catalog/model/extension/extension/getExtensions.php! [\#3678](https://github.com/opencart/opencart/issues/3678)
- Error: Could not load template /var/www/html/catalog/view/theme/common/column\_left.tpl! [\#3676](https://github.com/opencart/opencart/issues/3676)
- Search Engine Friendly Urls not used everywhere [\#3673](https://github.com/opencart/opencart/issues/3673)
- OPEN CART COUPON NOT DOING WHAT IT IS SUPPOSED TO BE DOING ! [\#3672](https://github.com/opencart/opencart/issues/3672)
- Use a number identifier in the seo-friendly urls [\#3671](https://github.com/opencart/opencart/issues/3671)
- Missing close quote in banner\_form.tpl [\#3670](https://github.com/opencart/opencart/issues/3670)
- mail configuration in opencart 2.1.0.1 [\#3669](https://github.com/opencart/opencart/issues/3669)
- Notice: Error: Unknown column 'username' in 'order clause' Error No: 1054 SELECT \* FROM `oc\_api` [\#3668](https://github.com/opencart/opencart/issues/3668)
- \[feature\] product title to automatic meta title [\#3667](https://github.com/opencart/opencart/issues/3667)
- If product has min quantity, adding 1 of that item to cart changes to min amount [\#3666](https://github.com/opencart/opencart/issues/3666)
- File Manager Error When triying to open modal window [\#3665](https://github.com/opencart/opencart/issues/3665)
- 2.1.0.1 installation fails [\#3661](https://github.com/opencart/opencart/issues/3661)
- Wrong option value displaying on edit product page after values being deleted. [\#3658](https://github.com/opencart/opencart/issues/3658)
- My account in the toolbar menu should switch to the user name when a user is loged in [\#3656](https://github.com/opencart/opencart/issues/3656)
- API documentation [\#3655](https://github.com/opencart/opencart/issues/3655)
- RTL native support for RTL locales [\#3654](https://github.com/opencart/opencart/issues/3654)
- Moving Customers from one group to another: Warning: Please check the form carefully for errors! [\#3650](https://github.com/opencart/opencart/issues/3650)
- Can't change order status [\#3649](https://github.com/opencart/opencart/issues/3649)
- Installation Issue [\#3647](https://github.com/opencart/opencart/issues/3647)
- Order edition error [\#3643](https://github.com/opencart/opencart/issues/3643)
- Reward points are not subtracted when order is placed. [\#3637](https://github.com/opencart/opencart/issues/3637)
- Sale - Order - add IP [\#3629](https://github.com/opencart/opencart/issues/3629)
- Three issues that affect live store [\#3628](https://github.com/opencart/opencart/issues/3628)
- First order & registration bug 2.1.0.1 [\#3627](https://github.com/opencart/opencart/issues/3627)
- Can't Use AWS SES [\#3625](https://github.com/opencart/opencart/issues/3625)
- Cannot change status of order with last item avaliable [\#3623](https://github.com/opencart/opencart/issues/3623)
- Error when I change the status of order from the admin [\#3622](https://github.com/opencart/opencart/issues/3622)
- When i whant delete order button not working. [\#3621](https://github.com/opencart/opencart/issues/3621)
- regular expression to validate email address for IDN [\#3620](https://github.com/opencart/opencart/issues/3620)
- Buttons not working on image uploader [\#3619](https://github.com/opencart/opencart/issues/3619)
- Subdirectory 'catalog' in 'image' directory is hard coded [\#3618](https://github.com/opencart/opencart/issues/3618)
- OpenCart Installation - extra forward-slash in directory listing [\#3614](https://github.com/opencart/opencart/issues/3614)
- Quoted shipping is incorrect [\#3612](https://github.com/opencart/opencart/issues/3612)
- The Date and Time Picker with Print v1.1 [\#3610](https://github.com/opencart/opencart/issues/3610)
- HTTP 500 Internal Server Error [\#3609](https://github.com/opencart/opencart/issues/3609)
- Incorrect Tax with guest checkout \[2.1.0.1\] [\#3608](https://github.com/opencart/opencart/issues/3608)
- Notice about array to string conversion in seo\_url.php [\#3606](https://github.com/opencart/opencart/issues/3606)
- Incorrect language & tpl variables [\#3605](https://github.com/opencart/opencart/issues/3605)
- Quoted shipping is incorrect [\#3604](https://github.com/opencart/opencart/issues/3604)
- Wrong path [\#3602](https://github.com/opencart/opencart/issues/3602)
- Share on Facebook [\#3599](https://github.com/opencart/opencart/issues/3599)
- Running list of outstanding issues with 2.1.0.1 not upgrade. [\#3598](https://github.com/opencart/opencart/issues/3598)
- Installer doesn't work [\#3597](https://github.com/opencart/opencart/issues/3597)
- information pages [\#3596](https://github.com/opencart/opencart/issues/3596)
- Can't view orders in admin [\#3595](https://github.com/opencart/opencart/issues/3595)
- 2.1.0.1 500 internal server error on update order [\#3593](https://github.com/opencart/opencart/issues/3593)
- Feature: Weight based shipping choose source currency [\#3591](https://github.com/opencart/opencart/issues/3591)
- Installer doesn't work [\#3590](https://github.com/opencart/opencart/issues/3590)
- cart/checkout page showing not needed options [\#3589](https://github.com/opencart/opencart/issues/3589)
- how check islogin admin? [\#3587](https://github.com/opencart/opencart/issues/3587)
- Edit order language issues [\#3585](https://github.com/opencart/opencart/issues/3585)
- Unable to attach multiple images to a product [\#3584](https://github.com/opencart/opencart/issues/3584)
- Unable to attach multiple images to a product [\#3581](https://github.com/opencart/opencart/issues/3581)
- Unable to attach multiple images to a product [\#3580](https://github.com/opencart/opencart/issues/3580)
- Rounding issue again [\#3578](https://github.com/opencart/opencart/issues/3578)
- Image manager Multiple image upload [\#3577](https://github.com/opencart/opencart/issues/3577)
- Unused $points variable in ModelTotalReward class [\#3576](https://github.com/opencart/opencart/issues/3576)
- Localisation in Order Information page is broken \(v 2.0.3.1\) [\#3575](https://github.com/opencart/opencart/issues/3575)
- items in opencart shop \> any category \> products page dublicates throughout pages. [\#3574](https://github.com/opencart/opencart/issues/3574)
- Unable to show image in products [\#3573](https://github.com/opencart/opencart/issues/3573)
- double cleaning super globals [\#3572](https://github.com/opencart/opencart/issues/3572)
- After upgrade I am missing part of the home page layout with exception of Banner, Menu and footer [\#3571](https://github.com/opencart/opencart/issues/3571)
- How to upgrade or port an extension to work in OpenCart 2.1.0.1 [\#3570](https://github.com/opencart/opencart/issues/3570)
- url.php on line 26 [\#3569](https://github.com/opencart/opencart/issues/3569)
- multi vendor, affiliate shopping, ccavenue facility for India not added [\#3567](https://github.com/opencart/opencart/issues/3567)
- how to build a opencart native app? [\#3566](https://github.com/opencart/opencart/issues/3566)
- New installation, /admin/, got fatal error calculate\(\) in featured.php [\#3562](https://github.com/opencart/opencart/issues/3562)
- API session error [\#3557](https://github.com/opencart/opencart/issues/3557)
- Extension installer issue [\#3556](https://github.com/opencart/opencart/issues/3556)
- New voucher issue [\#3555](https://github.com/opencart/opencart/issues/3555)
- Warning: Your IP \* is not allowed to access this API! [\#3554](https://github.com/opencart/opencart/issues/3554)
- Opencart 2 android/paypal error [\#3549](https://github.com/opencart/opencart/issues/3549)
- Any plans to remove and relabel 2.1.0.0 as not an upgrade or relabel it as Beta? [\#3548](https://github.com/opencart/opencart/issues/3548)
- Google Analytics Multi-Store [\#3547](https://github.com/opencart/opencart/issues/3547)
- Result Title [\#3546](https://github.com/opencart/opencart/issues/3546)
- DISCUSSION: namespaces and PSR [\#3545](https://github.com/opencart/opencart/issues/3545)
- SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data OK [\#3543](https://github.com/opencart/opencart/issues/3543)
- opencart installation - session bug. Session limit \[22,40\] chars [\#3542](https://github.com/opencart/opencart/issues/3542)
- opencart installation - session bug. Session limit \[22,40\] chars [\#3541](https://github.com/opencart/opencart/issues/3541)
- Missing Cart\ [\#3537](https://github.com/opencart/opencart/issues/3537)
- Modifications error=skip bug [\#3532](https://github.com/opencart/opencart/issues/3532)
- delete return status bug [\#3531](https://github.com/opencart/opencart/issues/3531)
- Sort Order Field Missing In Added 'Banner' Rows \[2.1.0.1\] [\#3529](https://github.com/opencart/opencart/issues/3529)
- Secure password with symbols - 2.1.0.1 [\#3528](https://github.com/opencart/opencart/issues/3528)
- Session class error [\#3524](https://github.com/opencart/opencart/issues/3524)
- Admin voucher send and order complete status [\#3521](https://github.com/opencart/opencart/issues/3521)
- Undefined variable error in Backup & Restore page from admin [\#3519](https://github.com/opencart/opencart/issues/3519)
- Closing tag missing [\#3514](https://github.com/opencart/opencart/issues/3514)
- Undefined variable: search\_action in /home/amillio8/public\_html/Demo/catalog/view/theme/red nav/template/common/search.tpl on line 20 and 46 [\#3512](https://github.com/opencart/opencart/issues/3512)
- Home Page Content not showing with exception of banner an menus. [\#3511](https://github.com/opencart/opencart/issues/3511)
- New banner image sort order not displaying. [\#3510](https://github.com/opencart/opencart/issues/3510)
- Notice: Undefined variable: icon in /home/amillio8/public\_html/Demo/vqmod/vqcache/vq2-system\_modification\_catalog\_view\_theme\_red nav\_template\_common\_header.tpl on line 20 [\#3509](https://github.com/opencart/opencart/issues/3509)
- DISCUSSION: tax\_rules and geo\_zones [\#3508](https://github.com/opencart/opencart/issues/3508)
- Notice: Error: Unknown column 'name' in 'order clause' Error No: 1054 SELECT \* FROM `oc\_api` ORDER BY name ASC in /home/amillio8/public\_html/Demo/system/library/db/mysqli.php on line 41Notice: Trying to get property of non-object in /home/amillio8/public\_html/Demo/admin/model/user/api.php on line 77 [\#3507](https://github.com/opencart/opencart/issues/3507)
- Fatal error: Call to undefined method ModelToolOnline::whosonline\(\) in /home/amillio8/public\_html/Demo/system/modification/catalog/controller/common/footer.php on line 80 [\#3506](https://github.com/opencart/opencart/issues/3506)
- Missing Order tabs Version 2.1.0.1 [\#3502](https://github.com/opencart/opencart/issues/3502)
- Dashboard Activity PHP errors [\#3498](https://github.com/opencart/opencart/issues/3498)
- Typo and Suggestion on OC 2.1.0.1 [\#3494](https://github.com/opencart/opencart/issues/3494)
- Class 'Controllerpayment' not found [\#3492](https://github.com/opencart/opencart/issues/3492)
- The side navigation isn't opening in Firefox [\#3491](https://github.com/opencart/opencart/issues/3491)
- Guest Checkout [\#3490](https://github.com/opencart/opencart/issues/3490)
- SyntaxError: Unexpected end of input OK [\#3489](https://github.com/opencart/opencart/issues/3489)
- Forget email admin [\#3488](https://github.com/opencart/opencart/issues/3488)
- Edit order [\#3487](https://github.com/opencart/opencart/issues/3487)
- mail service not working in opencart 1.5 [\#3486](https://github.com/opencart/opencart/issues/3486)
- pp\_payflow.php variable typo [\#3484](https://github.com/opencart/opencart/issues/3484)
- Remove this [\#3483](https://github.com/opencart/opencart/issues/3483)
- Session start not working well [\#3482](https://github.com/opencart/opencart/issues/3482)
- Why not default lowercase URL [\#3478](https://github.com/opencart/opencart/issues/3478)
- admin/controller/common/filemanager: variable '$filename' might have not been defined [\#3476](https://github.com/opencart/opencart/issues/3476)
- No return data from column\_left admin controller [\#3475](https://github.com/opencart/opencart/issues/3475)
- getTotalRecurrings has 0 parameters, 1 parameter is passed [\#3474](https://github.com/opencart/opencart/issues/3474)
- PayPal not comminucating with my site. [\#3473](https://github.com/opencart/opencart/issues/3473)
- Notice: Undefined variable: session\_id [\#3471](https://github.com/opencart/opencart/issues/3471)
- Where $this-\>load-\>library in system/engine/loader.php [\#3469](https://github.com/opencart/opencart/issues/3469)
- Division by zero [\#3468](https://github.com/opencart/opencart/issues/3468)
- 2.1.0.1 [\#3467](https://github.com/opencart/opencart/issues/3467)
- Order form language issue [\#3466](https://github.com/opencart/opencart/issues/3466)
- Shopping Cart and Check outError [\#3463](https://github.com/opencart/opencart/issues/3463)
- Google reCAPTCHA checkout register error [\#3462](https://github.com/opencart/opencart/issues/3462)
- Recurring Price Total [\#3461](https://github.com/opencart/opencart/issues/3461)
- 2.1.0.1 Undefined variable: entry\_export [\#3459](https://github.com/opencart/opencart/issues/3459)
- Filter module doesn't work [\#3454](https://github.com/opencart/opencart/issues/3454)
- Api voucher wrong model [\#3453](https://github.com/opencart/opencart/issues/3453)
- $this-\>load-\>language && $this-\>language-\>load\( [\#3448](https://github.com/opencart/opencart/issues/3448)
- 2.1.01 admin/controller/design/layout.php [\#3447](https://github.com/opencart/opencart/issues/3447)
- 2.1.01 admin/controller/design/banner [\#3446](https://github.com/opencart/opencart/issues/3446)
- After installation fresh store problem [\#3440](https://github.com/opencart/opencart/issues/3440)
- Permissions on the directories list below [\#3439](https://github.com/opencart/opencart/issues/3439)
- OC 2.0.3.1 - Editing order history throws "syntaxerror: Unexpected end of input" [\#3438](https://github.com/opencart/opencart/issues/3438)
- Notice: Undefined variable json in \opencart\admin\controller\sale\order.php on line 2221 [\#3436](https://github.com/opencart/opencart/issues/3436)
- Does title instead Page URL display of in Category Page. [\#3430](https://github.com/opencart/opencart/issues/3430)
- PHP Notice [\#3429](https://github.com/opencart/opencart/issues/3429)
- Button bug when finalizing an order [\#3428](https://github.com/opencart/opencart/issues/3428)
- Model checkout order missing array totals. [\#3426](https://github.com/opencart/opencart/issues/3426)
- Required values DEMO data not complete. [\#3423](https://github.com/opencart/opencart/issues/3423)
- Inconsistent zone data for zones in Austria [\#3420](https://github.com/opencart/opencart/issues/3420)
- variable: entry\_export [\#3414](https://github.com/opencart/opencart/issues/3414)
- Payment Method "terms" error code fix $payment\_method\['terms'\] [\#3408](https://github.com/opencart/opencart/issues/3408)
- Upgrade script column modidy [\#3406](https://github.com/opencart/opencart/issues/3406)
- Admin Royal Mail Shipping Does Not Retrieve Saved Rates [\#3405](https://github.com/opencart/opencart/issues/3405)
- Banner Sort Order Issue [\#3399](https://github.com/opencart/opencart/issues/3399)
- on the checkout page, step number does not re calculate when disable required shipping [\#3397](https://github.com/opencart/opencart/issues/3397)
- oc\_customer\_activity not update [\#3395](https://github.com/opencart/opencart/issues/3395)
- Extention PayPal PayFlow template $text\_loading Error [\#3380](https://github.com/opencart/opencart/issues/3380)
- Klarna Invoice - Not showing Thank you/Order compleate page [\#2794](https://github.com/opencart/opencart/issues/2794)
**Merged pull requests:**
- \[product.tpl\] Customer Name in Review Name Field [\#3745](https://github.com/opencart/opencart/pull/3745) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Issue \#3706 fixed [\#3739](https://github.com/opencart/opencart/pull/3739) ([Newman101](https://github.com/Newman101))
- Endpoint changes for Log in With PayPal [\#3732](https://github.com/opencart/opencart/pull/3732) ([davidteal](https://github.com/davidteal))
- Weight limit error check [\#3731](https://github.com/opencart/opencart/pull/3731) ([DaveMcW](https://github.com/DaveMcW))
- Fix missing international girth [\#3722](https://github.com/opencart/opencart/pull/3722) ([DaveMcW](https://github.com/DaveMcW))
- merge 2 condition into !empty\(....\) [\#3708](https://github.com/opencart/opencart/pull/3708) ([pine3ree](https://github.com/pine3ree))
- Undefined variable 'header' on line 1 of account.tpl when trying to v… [\#3689](https://github.com/opencart/opencart/pull/3689) ([mroffice](https://github.com/mroffice))
- simplified format method [\#3660](https://github.com/opencart/opencart/pull/3660) ([pine3ree](https://github.com/pine3ree))
- Changed search selector in common javascript. [\#3653](https://github.com/opencart/opencart/pull/3653) ([StefanYohansson](https://github.com/StefanYohansson))
- no need for substr\(\) [\#3652](https://github.com/opencart/opencart/pull/3652) ([pine3ree](https://github.com/pine3ree))
- replace if block with min function [\#3651](https://github.com/opencart/opencart/pull/3651) ([pine3ree](https://github.com/pine3ree))
- optimized check queries [\#3646](https://github.com/opencart/opencart/pull/3646) ([pine3ree](https://github.com/pine3ree))
- Add field to validate the custom fields. [\#3645](https://github.com/opencart/opencart/pull/3645) ([valdeir2000](https://github.com/valdeir2000))
- avoid calling strlen\(...\) inside a loop [\#3642](https://github.com/opencart/opencart/pull/3642) ([pine3ree](https://github.com/pine3ree))
- This resolve the issue \#3553 [\#3639](https://github.com/opencart/opencart/pull/3639) ([savage4pro](https://github.com/savage4pro))
- in\_array already returns the needed bool [\#3636](https://github.com/opencart/opencart/pull/3636) ([pine3ree](https://github.com/pine3ree))
- Bug fix Trying to get property of non-object [\#3635](https://github.com/opencart/opencart/pull/3635) ([valdeir2000](https://github.com/valdeir2000))
- Update variable name [\#3634](https://github.com/opencart/opencart/pull/3634) ([valdeir2000](https://github.com/valdeir2000))
- simplified "has" methods [\#3633](https://github.com/opencart/opencart/pull/3633) ([pine3ree](https://github.com/pine3ree))
- Rawurlencode for non-URL letters in image URLs [\#3630](https://github.com/opencart/opencart/pull/3630) ([toporchillo](https://github.com/toporchillo))
- Minor Fix: Update Link to 2.0 Support on Readme.MD [\#3616](https://github.com/opencart/opencart/pull/3616) ([stockmaster](https://github.com/stockmaster))
- Extra Slash deleted on Storage/cache [\#3615](https://github.com/opencart/opencart/pull/3615) ([stockmaster](https://github.com/stockmaster))
- Solved issue \#3606 [\#3613](https://github.com/opencart/opencart/pull/3613) ([Newman101](https://github.com/Newman101))
- Reset continue button on payment method step 5 in case of error [\#3607](https://github.com/opencart/opencart/pull/3607) ([chienhoang](https://github.com/chienhoang))
- \[order.php\] missing key "override" [\#3603](https://github.com/opencart/opencart/pull/3603) ([mgraph](https://github.com/mgraph))
- Incorrect Comparision condition [\#3588](https://github.com/opencart/opencart/pull/3588) ([sharanhayer](https://github.com/sharanhayer))
- Delete a non-existent city 'Gomo-Altaysk' from Russia country [\#3583](https://github.com/opencart/opencart/pull/3583) ([GreenRobot777](https://github.com/GreenRobot777))
- The Comparision Condition was placed wrongly [\#3582](https://github.com/opencart/opencart/pull/3582) ([sharanhayer](https://github.com/sharanhayer))
- Updated version [\#3579](https://github.com/opencart/opencart/pull/3579) ([vivekkiran](https://github.com/vivekkiran))
- Language Text Update [\#3561](https://github.com/opencart/opencart/pull/3561) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Language Text Update [\#3560](https://github.com/opencart/opencart/pull/3560) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Updated error\_store Language [\#3559](https://github.com/opencart/opencart/pull/3559) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Update login.php [\#3558](https://github.com/opencart/opencart/pull/3558) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Featured Products Fix \(Bug \#3551\) [\#3552](https://github.com/opencart/opencart/pull/3552) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Fixed Register Text [\#3550](https://github.com/opencart/opencart/pull/3550) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Update store.php [\#3540](https://github.com/opencart/opencart/pull/3540) ([OpenCartAddons](https://github.com/OpenCartAddons))
- \[securetrading\_ws\_order.tpl\] fix table layout [\#3539](https://github.com/opencart/opencart/pull/3539) ([mgraph](https://github.com/mgraph))
- \[securetrading\_ws.php\] fix template rendering [\#3538](https://github.com/opencart/opencart/pull/3538) ([mgraph](https://github.com/mgraph))
- Update order.php [\#3534](https://github.com/opencart/opencart/pull/3534) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Update return.php [\#3533](https://github.com/opencart/opencart/pull/3533) ([OpenCartAddons](https://github.com/OpenCartAddons))
- \[securetrading\_ws.php\] addOrderHistory [\#3527](https://github.com/opencart/opencart/pull/3527) ([mgraph](https://github.com/mgraph))
- correct private variable name [\#3526](https://github.com/opencart/opencart/pull/3526) ([pine3ree](https://github.com/pine3ree))
- Fix pagination [\#3523](https://github.com/opencart/opencart/pull/3523) ([Spell6inder](https://github.com/Spell6inder))
- \[customer.php\] forgot params "filter\_ip" [\#3522](https://github.com/opencart/opencart/pull/3522) ([mgraph](https://github.com/mgraph))
- product report total [\#3501](https://github.com/opencart/opencart/pull/3501) ([pine3ree](https://github.com/pine3ree))
- Update install.txt [\#3499](https://github.com/opencart/opencart/pull/3499) ([moein](https://github.com/moein))
- Add `use Cart\User` namespace/class [\#3493](https://github.com/opencart/opencart/pull/3493) ([matrunchyk](https://github.com/matrunchyk))
- Update pp\_payflow.tpl [\#3485](https://github.com/opencart/opencart/pull/3485) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Removed unused local variable [\#3481](https://github.com/opencart/opencart/pull/3481) ([matrunchyk](https://github.com/matrunchyk))
- Fixed variable overwrite within a `foreach` loop. [\#3479](https://github.com/opencart/opencart/pull/3479) ([matrunchyk](https://github.com/matrunchyk))
- Removed declaration of unused array variable `$json = array\(\);`. [\#3477](https://github.com/opencart/opencart/pull/3477) ([matrunchyk](https://github.com/matrunchyk))
- Update product\_form.tpl [\#3470](https://github.com/opencart/opencart/pull/3470) ([billynoah](https://github.com/billynoah))
- \[category.php\] show warning on all error [\#3458](https://github.com/opencart/opencart/pull/3458) ([mgraph](https://github.com/mgraph))
- SEO Keyword -\> SEO URL [\#3452](https://github.com/opencart/opencart/pull/3452) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Update To Header Menu [\#3451](https://github.com/opencart/opencart/pull/3451) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Removing duplicate rows language setting.php [\#3444](https://github.com/opencart/opencart/pull/3444) ([ManoelVidal](https://github.com/ManoelVidal))
- Correction in translation google\_captcha.php [\#3442](https://github.com/opencart/opencart/pull/3442) ([ManoelVidal](https://github.com/ManoelVidal))
- Update opencart.sql [\#3437](https://github.com/opencart/opencart/pull/3437) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Added Checkout Step Reassignment When Shipping Not Required [\#3435](https://github.com/opencart/opencart/pull/3435) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Update order.php [\#3434](https://github.com/opencart/opencart/pull/3434) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Added Meta Title Content To Installation [\#3432](https://github.com/opencart/opencart/pull/3432) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Reset payment method continue button if terms are not agreed [\#3431](https://github.com/opencart/opencart/pull/3431) ([davidteal](https://github.com/davidteal))
- \[pp\_express\] Changed the logo's width to 750px [\#3427](https://github.com/opencart/opencart/pull/3427) ([tiborbesze86](https://github.com/tiborbesze86))
- \[pp\_express\] Added an ID tag to the logo's hidden input [\#3425](https://github.com/opencart/opencart/pull/3425) ([tiborbesze86](https://github.com/tiborbesze86))
- Replace html entities with real umlauts [\#3421](https://github.com/opencart/opencart/pull/3421) ([hoermannklaus](https://github.com/hoermannklaus))
- Voucher -\> Gift Certificate [\#3416](https://github.com/opencart/opencart/pull/3416) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Bug fix \#3412 [\#3413](https://github.com/opencart/opencart/pull/3413) ([Newman101](https://github.com/Newman101))
- Updated From Email For Marketing Mail [\#3357](https://github.com/opencart/opencart/pull/3357) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Fix reply\_to in header [\#3165](https://github.com/opencart/opencart/pull/3165) ([detergen](https://github.com/detergen))
- \[admin\] missing tooltip in featured.tpl [\#3097](https://github.com/opencart/opencart/pull/3097) ([opencart-russia](https://github.com/opencart-russia))
- Adding image to option type checkbox in product details [\#3086](https://github.com/opencart/opencart/pull/3086) ([ManoelVidal](https://github.com/ManoelVidal))
- copyProduct: unused var assignment and db join [\#2675](https://github.com/opencart/opencart/pull/2675) ([pine3ree](https://github.com/pine3ree))
## [2.1.0.1](https://github.com/opencart/opencart/tree/2.1.0.1) (2015-10-06)
[Full Changelog](https://github.com/opencart/opencart/compare/2.1.0.0...2.1.0.1)
**Closed issues:**
- when i install import/export tool in opencart 2.3.0.1 diplay this error..so suggest me the best solution [\#3418](https://github.com/opencart/opencart/issues/3418)
- Wishlist wrong product\_id [\#3412](https://github.com/opencart/opencart/issues/3412)
- Is there any way to auto refresh modification when install/reinstall module? [\#3409](https://github.com/opencart/opencart/issues/3409)
- Admin customer edit form IP not displayed correctly [\#3407](https://github.com/opencart/opencart/issues/3407)
- Open Cart 2.0.3.1 [\#3404](https://github.com/opencart/opencart/issues/3404)
- Straight outta options [\#3403](https://github.com/opencart/opencart/issues/3403)
- SQL injection BUG [\#3398](https://github.com/opencart/opencart/issues/3398)
**Merged pull requests:**
- Download Error Log [\#3417](https://github.com/opencart/opencart/pull/3417) ([valdeir2000](https://github.com/valdeir2000))
- use ip from data object & wording changes for fraudlabspro anti-fraud [\#3192](https://github.com/opencart/opencart/pull/3192) ([chrislim2888](https://github.com/chrislim2888))
## [2.1.0.0](https://github.com/opencart/opencart/tree/2.1.0.0) (2015-09-27)
[Full Changelog](https://github.com/opencart/opencart/compare/2.1.0.0_rc1...2.1.0.0)
**Closed issues:**
- Order edit changes the customer cart [\#3392](https://github.com/opencart/opencart/issues/3392)
- Controller voucher error [\#3391](https://github.com/opencart/opencart/issues/3391)
- Permission denied [\#3386](https://github.com/opencart/opencart/issues/3386)
- Still problems with custom database port. [\#3379](https://github.com/opencart/opencart/issues/3379)
- Version 2.0.3.1 Error ----PP\_EXPRESS Error [\#3377](https://github.com/opencart/opencart/issues/3377)
- Order form and new cart system [\#3375](https://github.com/opencart/opencart/issues/3375)
- OC 2.1.0.0\_rc1 Edit Order not working [\#3374](https://github.com/opencart/opencart/issues/3374)
- Modification Refresh makes site go into maintenance mode [\#3373](https://github.com/opencart/opencart/issues/3373)
- Add to cart with string quantity [\#3372](https://github.com/opencart/opencart/issues/3372)
- Question [\#3371](https://github.com/opencart/opencart/issues/3371)
- https destroy theme [\#3370](https://github.com/opencart/opencart/issues/3370)
- Vsprintf [\#3369](https://github.com/opencart/opencart/issues/3369)
- Finish restore url [\#3367](https://github.com/opencart/opencart/issues/3367)
- Question about difference [\#3366](https://github.com/opencart/opencart/issues/3366)
- Cutomer Whislist not exist [\#3365](https://github.com/opencart/opencart/issues/3365)
- Admin Permission Denied after upgrade to latest master [\#3364](https://github.com/opencart/opencart/issues/3364)
- multiple file locations issue [\#3362](https://github.com/opencart/opencart/issues/3362)
- Shoiwing error "We are currently performing some scheduled maintenance....." when not logged in as admin [\#3360](https://github.com/opencart/opencart/issues/3360)
- Strange errors [\#3359](https://github.com/opencart/opencart/issues/3359)
- Custom fields by group error [\#3355](https://github.com/opencart/opencart/issues/3355)
- Coupon per category does not work [\#3354](https://github.com/opencart/opencart/issues/3354)
- mail issue [\#3352](https://github.com/opencart/opencart/issues/3352)
- PayPal IPN - special characters [\#3351](https://github.com/opencart/opencart/issues/3351)
- Mysql error `cart` table option column remove index [\#3349](https://github.com/opencart/opencart/issues/3349)
- Missing setTitle [\#3348](https://github.com/opencart/opencart/issues/3348)
- Add wishlist table [\#3347](https://github.com/opencart/opencart/issues/3347)
- HTTP\_IMAGE is removed, starting from 1.5.?.? version, but still exists in cli\_install.php file [\#3346](https://github.com/opencart/opencart/issues/3346)
- Icon in Product\>Description cannot make hyper link [\#3344](https://github.com/opencart/opencart/issues/3344)
- Error: DATA not accepted from server! in /var/www/html/system/library/mail.php on line 418 - Version 2.0.3.1 [\#3343](https://github.com/opencart/opencart/issues/3343)
- Adding reward points in admin \(2.0.3.1\) [\#3341](https://github.com/opencart/opencart/issues/3341)
- Un expect [\#3340](https://github.com/opencart/opencart/issues/3340)
- Bluepay Redirect controller setting wrong type [\#3339](https://github.com/opencart/opencart/issues/3339)
- Bluepay Redirect payment getting wrong totals [\#3338](https://github.com/opencart/opencart/issues/3338)
- Bluepay Redirect payment Trans Type wrong [\#3336](https://github.com/opencart/opencart/issues/3336)
- Language button name undefined [\#3335](https://github.com/opencart/opencart/issues/3335)
- Manufacturer empty canonical [\#3333](https://github.com/opencart/opencart/issues/3333)
- MaxMind Fraud module is broken [\#3331](https://github.com/opencart/opencart/issues/3331)
- error in upgrade 2.1.0.0 part 3 and other error [\#3329](https://github.com/opencart/opencart/issues/3329)
- Warning in order return page [\#3328](https://github.com/opencart/opencart/issues/3328)
- Issues in notification admin panel [\#3327](https://github.com/opencart/opencart/issues/3327)
- Login restore cart [\#3326](https://github.com/opencart/opencart/issues/3326)
- error in upgrade 2.1.0.0 part 2 [\#3325](https://github.com/opencart/opencart/issues/3325)
- Issues Related version 2.1 [\#3324](https://github.com/opencart/opencart/issues/3324)
- Wrong select name in setting [\#3323](https://github.com/opencart/opencart/issues/3323)
- Error in orders v2.0.3.1 [\#3322](https://github.com/opencart/opencart/issues/3322)
- Error successful registration [\#3321](https://github.com/opencart/opencart/issues/3321)
- Voucher send query is strange [\#3320](https://github.com/opencart/opencart/issues/3320)
- Model voucher missing [\#3318](https://github.com/opencart/opencart/issues/3318)
- error in upgrade 2.1.0.0 [\#3317](https://github.com/opencart/opencart/issues/3317)
- startup.php [\#3316](https://github.com/opencart/opencart/issues/3316)
- Installation Issue - DB Prefix [\#3307](https://github.com/opencart/opencart/issues/3307)
- Remove \</form\> [\#3305](https://github.com/opencart/opencart/issues/3305)
- G2A Pay Module Not Working [\#3290](https://github.com/opencart/opencart/issues/3290)
- google\_base.php missing "google\_product\_category" [\#3228](https://github.com/opencart/opencart/issues/3228)
- Improving getTotalProducts\(\) and maybe other queries [\#3198](https://github.com/opencart/opencart/issues/3198)
- Pay with Amazon tax not being calculated [\#3167](https://github.com/opencart/opencart/issues/3167)
- Cart in multistore mode [\#2704](https://github.com/opencart/opencart/issues/2704)
**Merged pull requests:**
- v2936 OpenBay Pro release. [\#3394](https://github.com/opencart/opencart/pull/3394) ([jamesallsup](https://github.com/jamesallsup))
- Adding config\_login\_attempts = 5 to install sql [\#3390](https://github.com/opencart/opencart/pull/3390) ([davidteal](https://github.com/davidteal))
- Checkout register login [\#3389](https://github.com/opencart/opencart/pull/3389) ([davidteal](https://github.com/davidteal))
- Improved UX for slow payment gateways/shipping methods as loading but… [\#3388](https://github.com/opencart/opencart/pull/3388) ([davidteal](https://github.com/davidteal))
- Update bestseller.php [\#3368](https://github.com/opencart/opencart/pull/3368) ([osworx](https://github.com/osworx))
- Update latest.php [\#3363](https://github.com/opencart/opencart/pull/3363) ([osworx](https://github.com/osworx))
- Fix dspan to div [\#3350](https://github.com/opencart/opencart/pull/3350) ([GomDani](https://github.com/GomDani))
- remove duplicate lines [\#3337](https://github.com/opencart/opencart/pull/3337) ([stan-bg](https://github.com/stan-bg))
- Removed Duplicate ip\_city In maxmind.php [\#3332](https://github.com/opencart/opencart/pull/3332) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Convert Limit to Integer [\#3330](https://github.com/opencart/opencart/pull/3330) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Hotfix/g2 a vat bug [\#3319](https://github.com/opencart/opencart/pull/3319) ([chris-wm](https://github.com/chris-wm))
- Change SEO Keyword Text to SEO URL [\#3315](https://github.com/opencart/opencart/pull/3315) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Update guest.tpl [\#3314](https://github.com/opencart/opencart/pull/3314) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Update basic\_captcha.tpl [\#3313](https://github.com/opencart/opencart/pull/3313) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Update order.php [\#3310](https://github.com/opencart/opencart/pull/3310) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Update order.php [\#3309](https://github.com/opencart/opencart/pull/3309) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Update install.php [\#3306](https://github.com/opencart/opencart/pull/3306) ([OpenCartAddons](https://github.com/OpenCartAddons))
- redundant array access [\#3285](https://github.com/opencart/opencart/pull/3285) ([pine3ree](https://github.com/pine3ree))
- Fixed broken layout when adding a new image to a banner [\#3255](https://github.com/opencart/opencart/pull/3255) ([tiborbesze86](https://github.com/tiborbesze86))
- Fixed broken layout when adding a new discount [\#3254](https://github.com/opencart/opencart/pull/3254) ([tiborbesze86](https://github.com/tiborbesze86))
- remove redundant conditions [\#3249](https://github.com/opencart/opencart/pull/3249) ([pine3ree](https://github.com/pine3ree))
- Friendly error when mPDO error occurs on installation of Opencart. [\#3171](https://github.com/opencart/opencart/pull/3171) ([Tijme](https://github.com/Tijme))
- Prevent html content inside modules dropdown [\#3140](https://github.com/opencart/opencart/pull/3140) ([aldoanizio](https://github.com/aldoanizio))
- Bug fix: if $mail-\>reply\_to is set, use that \(instead of $mail-\>from\) in the email headers [\#3023](https://github.com/opencart/opencart/pull/3023) ([steefdw](https://github.com/steefdw))
- never met condition [\#2868](https://github.com/opencart/opencart/pull/2868) ([pine3ree](https://github.com/pine3ree))
## [2.1.0.0_rc1](https://github.com/opencart/opencart/tree/2.1.0.0_rc1) (2015-09-08)
[Full Changelog](https://github.com/opencart/opencart/compare/2.0.3.1...2.1.0.0_rc1)
**Closed issues:**
- Error Activity.php [\#3302](https://github.com/opencart/opencart/issues/3302)
- Admin Language [\#3301](https://github.com/opencart/opencart/issues/3301)
- Extension Installer Not Work in Version 2.0 [\#3299](https://github.com/opencart/opencart/issues/3299)
- Edit Order Fetches Current Product Price, Not Sold At Price [\#3298](https://github.com/opencart/opencart/issues/3298)
- Image manager not working in Mozzila and Chrome [\#3296](https://github.com/opencart/opencart/issues/3296)
- Default Theme [\#3295](https://github.com/opencart/opencart/issues/3295)
- Changing order status in history tab increases stock quantity [\#3292](https://github.com/opencart/opencart/issues/3292)
- MemCached external [\#3291](https://github.com/opencart/opencart/issues/3291)
- Color profile not correct [\#3286](https://github.com/opencart/opencart/issues/3286)
- ORM for Model querying [\#3284](https://github.com/opencart/opencart/issues/3284)
- opencart login Qnap [\#3281](https://github.com/opencart/opencart/issues/3281)
- Opencart admin shows white screen [\#3280](https://github.com/opencart/opencart/issues/3280)
- invoice and order notification email list coupon code instead of coupon name [\#3279](https://github.com/opencart/opencart/issues/3279)
- No admin user [\#3278](https://github.com/opencart/opencart/issues/3278)
- Can not remove options from products [\#3277](https://github.com/opencart/opencart/issues/3277)
- Wrong redirect [\#3276](https://github.com/opencart/opencart/issues/3276)
- Missing config\_language\_id [\#3275](https://github.com/opencart/opencart/issues/3275)
- When you add an attribute without group [\#3274](https://github.com/opencart/opencart/issues/3274)
- Fatal Error: Memory Exhausted [\#3272](https://github.com/opencart/opencart/issues/3272)
- Coupon/Voucher should be available during checkout [\#3271](https://github.com/opencart/opencart/issues/3271)
- Double quotes breaks product name on edit form [\#3270](https://github.com/opencart/opencart/issues/3270)
- loader.php is problem for modules and templates [\#3269](https://github.com/opencart/opencart/issues/3269)
- Hidden currency problem [\#3268](https://github.com/opencart/opencart/issues/3268)
- Forgottern password check account has been approved [\#3266](https://github.com/opencart/opencart/issues/3266)
- file manager not working on github master test [\#3264](https://github.com/opencart/opencart/issues/3264)
- the currency and location browser [\#3262](https://github.com/opencart/opencart/issues/3262)
- Problem round discount \(double round\) [\#3260](https://github.com/opencart/opencart/issues/3260)
- If two categories have same sub category name then website does not show correct products [\#3259](https://github.com/opencart/opencart/issues/3259)
- Make tooltips work on new elements [\#3258](https://github.com/opencart/opencart/issues/3258)
- Native iOS/Android m-commerce app with opencart backend [\#3257](https://github.com/opencart/opencart/issues/3257)
- Unable to change order status from pending to complete through add history option [\#3256](https://github.com/opencart/opencart/issues/3256)
- Document selection "lost" in filemanager when a filter is applied [\#3253](https://github.com/opencart/opencart/issues/3253)
- The extension/modification refresh bug [\#3252](https://github.com/opencart/opencart/issues/3252)
- install error [\#3251](https://github.com/opencart/opencart/issues/3251)
- It's possible to order out-of-stock products when "Stock Checkout" is set to "No" [\#3248](https://github.com/opencart/opencart/issues/3248)
- Remove forward slash from download [\#3246](https://github.com/opencart/opencart/issues/3246)
- Image frame shift down on each next image viewing [\#3245](https://github.com/opencart/opencart/issues/3245)
- should Url Link self-manage SSL config? [\#3241](https://github.com/opencart/opencart/issues/3241)
- Please add textarea for Google Tag Manager \(OpenCart 2.0.3.1\) [\#3238](https://github.com/opencart/opencart/issues/3238)
- error on checkout [\#3236](https://github.com/opencart/opencart/issues/3236)
- OCMOD regex deletes searched token if add position is not replace [\#3235](https://github.com/opencart/opencart/issues/3235)
- Admin text\_default plain text [\#3234](https://github.com/opencart/opencart/issues/3234)
- Ability to add priority to event listeners [\#3233](https://github.com/opencart/opencart/issues/3233)
- owl.carousel missing css [\#3227](https://github.com/opencart/opencart/issues/3227)
- opencart cart update problem [\#3225](https://github.com/opencart/opencart/issues/3225)
- missing class .product-layout in tpl modules [\#3224](https://github.com/opencart/opencart/issues/3224)
- Customers Online Report [\#3223](https://github.com/opencart/opencart/issues/3223)
- USPS Priority Mail to Canada [\#3221](https://github.com/opencart/opencart/issues/3221)
- Suggestion for change to config.php [\#3220](https://github.com/opencart/opencart/issues/3220)
- fopen problem can\t acces admin or website [\#3217](https://github.com/opencart/opencart/issues/3217)
- Multistore order history problem [\#3216](https://github.com/opencart/opencart/issues/3216)
- Why are there so many unmerged PRs? [\#3214](https://github.com/opencart/opencart/issues/3214)
- Gift voucher applied and after removal of cart ,still gift voucher there [\#3213](https://github.com/opencart/opencart/issues/3213)
- Notice: unserialize\(\): Error at offset [\#3212](https://github.com/opencart/opencart/issues/3212)
- cart.php All the option quantities are zero and are required. [\#3211](https://github.com/opencart/opencart/issues/3211)
- Annoying sample data [\#3210](https://github.com/opencart/opencart/issues/3210)
- Incorrect permission referenced in Worldpay payment controller for admin [\#3209](https://github.com/opencart/opencart/issues/3209)
- OC 2.0.3.1 modification extension - brace expansion of pathnames does not work [\#3206](https://github.com/opencart/opencart/issues/3206)
- Reset google recaptcha after submit product review [\#3205](https://github.com/opencart/opencart/issues/3205)
- Order Editing Stock Quantity Issue. [\#3204](https://github.com/opencart/opencart/issues/3204)
- Catalog \> Options : Page Not Found [\#3203](https://github.com/opencart/opencart/issues/3203)
- Error: Table '.oc\_address' doesn't exist [\#3202](https://github.com/opencart/opencart/issues/3202)
- Option value list layout issue [\#3201](https://github.com/opencart/opencart/issues/3201)
- Can't log in [\#3200](https://github.com/opencart/opencart/issues/3200)
- All fields Blank caused by json\_decode? [\#3199](https://github.com/opencart/opencart/issues/3199)
- Not sending order status change email [\#3195](https://github.com/opencart/opencart/issues/3195)
- SyntaxError: JSON Parse error: Unrecognized token [\#3189](https://github.com/opencart/opencart/issues/3189)
- Order admin page error [\#3186](https://github.com/opencart/opencart/issues/3186)
- Password Decode Failure, Step 3 Installation \(Access denied for user 'username'@'hostname' \(using password: YES\)\) [\#3185](https://github.com/opencart/opencart/issues/3185)
- Missing meta data in add language [\#3184](https://github.com/opencart/opencart/issues/3184)
- column\_left.tpl+column\_right.tpl [\#3183](https://github.com/opencart/opencart/issues/3183)
- ORDER STATUS ERRORS SyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data [\#3182](https://github.com/opencart/opencart/issues/3182)
- Notification Menu on Pending Orders [\#3180](https://github.com/opencart/opencart/issues/3180)
- Category canonical & breadcrumbs are incorrect - Generate from found category\_id and not uri path [\#3179](https://github.com/opencart/opencart/issues/3179)
- Product options weight wrong on shipping list - only shows base product weight [\#3178](https://github.com/opencart/opencart/issues/3178)
- Opencart Smtp Mail not Sending To hotmail Account [\#3177](https://github.com/opencart/opencart/issues/3177)
- install file looking for "storeage" [\#3175](https://github.com/opencart/opencart/issues/3175)
- Install step 2 missing storage/ [\#3174](https://github.com/opencart/opencart/issues/3174)
- PHP Warning: rmdir directory not empty [\#3173](https://github.com/opencart/opencart/issues/3173)
- Integrate Multimerch by default in opencart [\#3172](https://github.com/opencart/opencart/issues/3172)
- Modification refresh causes maintenance mode off with no on [\#3170](https://github.com/opencart/opencart/issues/3170)
- Site goes into maintenance mode after changing settings in admin [\#3169](https://github.com/opencart/opencart/issues/3169)
- Product option selection gets erased from time to time [\#3168](https://github.com/opencart/opencart/issues/3168)
- MaxMaind error HTTP 500 and Opder crash OC 2.03.1, 2.0.3.2\_rc [\#3166](https://github.com/opencart/opencart/issues/3166)
- Bug in sale/order controller. [\#3164](https://github.com/opencart/opencart/issues/3164)
- Order editing [\#3163](https://github.com/opencart/opencart/issues/3163)
- \[OC2.3.1\] reward points not added to returning customer [\#3161](https://github.com/opencart/opencart/issues/3161)
- How to new field at oc\_order table in admin [\#3160](https://github.com/opencart/opencart/issues/3160)
- OC 2.0.3.1 does not diminishing stock at all [\#3159](https://github.com/opencart/opencart/issues/3159)
- "Notify Customer" box in History tab on Order screen not working properly [\#3158](https://github.com/opencart/opencart/issues/3158)
- placeholder display issue in product edit -\> special -\> priority field [\#3157](https://github.com/opencart/opencart/issues/3157)
- Print shipping list - wrong weight [\#3155](https://github.com/opencart/opencart/issues/3155)
- Category -\> Data -\> Filters autofill show just some filters, not all [\#3154](https://github.com/opencart/opencart/issues/3154)
- Unable to modify orders in latest Version 2.0.3.2\_rc [\#3153](https://github.com/opencart/opencart/issues/3153)
- Error in comment of Product [\#3152](https://github.com/opencart/opencart/issues/3152)
- New Template Engine for Opencart 3 [\#3151](https://github.com/opencart/opencart/issues/3151)
- i can't recieved enquiry mail while submit contact page [\#3150](https://github.com/opencart/opencart/issues/3150)
- Image Manager not working [\#3148](https://github.com/opencart/opencart/issues/3148)
- 4 products after the system is broken [\#3146](https://github.com/opencart/opencart/issues/3146)
- categories and products do not appear or link [\#3145](https://github.com/opencart/opencart/issues/3145)
- Address book link in my account not work and only blank page [\#3144](https://github.com/opencart/opencart/issues/3144)
- OC 2.0.3.x Obsolete code in admin/controller/catalog/product.php [\#3143](https://github.com/opencart/opencart/issues/3143)
- Show all product tags at once [\#3141](https://github.com/opencart/opencart/issues/3141)
- Stock quantity bug [\#3139](https://github.com/opencart/opencart/issues/3139)
- Product count very slow on large store [\#3138](https://github.com/opencart/opencart/issues/3138)
- Modules not appearing on layout after installing [\#3136](https://github.com/opencart/opencart/issues/3136)
- Register account email field accept invalid email address [\#3134](https://github.com/opencart/opencart/issues/3134)
- Unable to load sitemap.xml [\#3133](https://github.com/opencart/opencart/issues/3133)
- Option 'sets' or 'product types' would be invaluable to many like me [\#3132](https://github.com/opencart/opencart/issues/3132)
- Warning: ini\_set\(\): A session is active [\#3131](https://github.com/opencart/opencart/issues/3131)
- htaccess force ssl getting error redirect loop [\#3130](https://github.com/opencart/opencart/issues/3130)
- Cooment order in mail admin order [\#3129](https://github.com/opencart/opencart/issues/3129)
- Not Sending EMail [\#3127](https://github.com/opencart/opencart/issues/3127)
- Bootstrap info button showing blue border [\#3126](https://github.com/opencart/opencart/issues/3126)
- Opencart 2.0.1.1 SyntaxError: Unexpected end of input [\#3124](https://github.com/opencart/opencart/issues/3124)
- Wiki OCMOD [\#3123](https://github.com/opencart/opencart/issues/3123)
- Missing rename of country method location in ajax call [\#3121](https://github.com/opencart/opencart/issues/3121)
- library-image-\>watermark not work [\#3119](https://github.com/opencart/opencart/issues/3119)
- Fatal error: Call to undefined method ModelAffiliateAffiliate::deleteLoginAttempts\(\) [\#3116](https://github.com/opencart/opencart/issues/3116)
- \[2.0.3.1\] \upload\catalog\model\openbay\ebay\_product.php [\#3115](https://github.com/opencart/opencart/issues/3115)
- Install Error Log In admin [\#3114](https://github.com/opencart/opencart/issues/3114)
- admin/index.php?route=setting/setting returns Nginx 500 error on update [\#3112](https://github.com/opencart/opencart/issues/3112)
- OpenCart 2.0.2.0 error: SyntaxError Unexpected end of input OK [\#3111](https://github.com/opencart/opencart/issues/3111)
- Strange behavior [\#3110](https://github.com/opencart/opencart/issues/3110)
- Paypal payflow pro [\#3109](https://github.com/opencart/opencart/issues/3109)
- Historical Fraud data is missing after 2.0.3.1 [\#3108](https://github.com/opencart/opencart/issues/3108)
- \[improvement\] trim file path in modification.php [\#3107](https://github.com/opencart/opencart/issues/3107)
- API-login.php [\#3106](https://github.com/opencart/opencart/issues/3106)
- Mail alert Not working in Opencart 2.02 [\#3104](https://github.com/opencart/opencart/issues/3104)
- SyntaxError: Unexpected token [\#3103](https://github.com/opencart/opencart/issues/3103)
- Historical Fraud data is missing after 2.0.3.1 [\#3102](https://github.com/opencart/opencart/issues/3102)
- Customers orders report wrong information [\#3101](https://github.com/opencart/opencart/issues/3101)
- Duble Encode in search url [\#3099](https://github.com/opencart/opencart/issues/3099)
- Paypal Express Payment Module - exclude totals - hard-corded [\#3094](https://github.com/opencart/opencart/issues/3094)
- Gift voucher mails not sent automatically!! [\#3093](https://github.com/opencart/opencart/issues/3093)
- Admin permissions problem? [\#3091](https://github.com/opencart/opencart/issues/3091)
- At Least add correct info - Event Wiki [\#3090](https://github.com/opencart/opencart/issues/3090)
- Opencart Minimum order checkout [\#3089](https://github.com/opencart/opencart/issues/3089)
- browser format is all messed up after upgrade [\#3088](https://github.com/opencart/opencart/issues/3088)
- i got this issue when i try to change status order \#3072 [\#3087](https://github.com/opencart/opencart/issues/3087)
- FTP fails to upload Extensions [\#3085](https://github.com/opencart/opencart/issues/3085)
- $this-\>document-\>addScriptFooter\(\) [\#3084](https://github.com/opencart/opencart/issues/3084)
- $this-\>document-\>addTimestamp\(\) [\#3083](https://github.com/opencart/opencart/issues/3083)
- $this-\>document-\>addMeta\(\) [\#3082](https://github.com/opencart/opencart/issues/3082)
- Missing SSL [\#3081](https://github.com/opencart/opencart/issues/3081)
- A trifle, but it is inconvenient [\#3080](https://github.com/opencart/opencart/issues/3080)
- The page you requested cannot be found error [\#3078](https://github.com/opencart/opencart/issues/3078)
- Opencart Product Adding/Updating Giving Error [\#3075](https://github.com/opencart/opencart/issues/3075)
- Opencart Jewelry Site Feature [\#3074](https://github.com/opencart/opencart/issues/3074)
- i have a merchant account please suggest me an extension [\#3073](https://github.com/opencart/opencart/issues/3073)
- i got this issue when i try to change status order [\#3072](https://github.com/opencart/opencart/issues/3072)
- Wrong event name for new address and login trigger not working [\#3071](https://github.com/opencart/opencart/issues/3071)
- seo url problem on other functions like domain.com/contact/success [\#3070](https://github.com/opencart/opencart/issues/3070)
- Maxmind Error ! [\#3069](https://github.com/opencart/opencart/issues/3069)
- Undefined variable: entry\_captcha in [\#3068](https://github.com/opencart/opencart/issues/3068)
- Gift Voucher can be used more than once in OpenCart 2.0.2 Ver. problem [\#3067](https://github.com/opencart/opencart/issues/3067)
- Unable to upload SVG images for categories [\#3064](https://github.com/opencart/opencart/issues/3064)
- Properly handle errors on sites with curl http loopback disabled [\#3063](https://github.com/opencart/opencart/issues/3063)
- Installer check for Curl HTTP Loopback support [\#3062](https://github.com/opencart/opencart/issues/3062)
- FedEx shipping module improvements [\#3019](https://github.com/opencart/opencart/issues/3019)
- Image manager infinate looping images [\#3016](https://github.com/opencart/opencart/issues/3016)
- No canonical url on special pages [\#2900](https://github.com/opencart/opencart/issues/2900)
- Commit \#2652 breaks the Featured module's layout [\#2886](https://github.com/opencart/opencart/issues/2886)
- umask prevents mkdir 0777 after image upload in backend [\#2745](https://github.com/opencart/opencart/issues/2745)
- Wrong order status if clause [\#2722](https://github.com/opencart/opencart/issues/2722)
- Can't void order if in banip or fraud [\#2720](https://github.com/opencart/opencart/issues/2720)
- opencart/upload/catalog/controller/api/order.php - Shipping Method [\#2712](https://github.com/opencart/opencart/issues/2712)
- Class for modules in column-left and -right [\#2710](https://github.com/opencart/opencart/issues/2710)
- Extensions needed to be looked at [\#1747](https://github.com/opencart/opencart/issues/1747)
**Merged pull requests:**
- Updated the OBP release number. [\#3304](https://github.com/opencart/opencart/pull/3304) ([jamesallsup](https://github.com/jamesallsup))
- OpenBay Pro update to latest. [\#3303](https://github.com/opencart/opencart/pull/3303) ([jamesallsup](https://github.com/jamesallsup))
- Added priority to event listener. Higher priority means more importance. [\#3300](https://github.com/opencart/opencart/pull/3300) ([smilesrg](https://github.com/smilesrg))
- Hotfix/g2 a form bug [\#3294](https://github.com/opencart/opencart/pull/3294) ([chris-wm](https://github.com/chris-wm))
- LPA - updating platform id code [\#3293](https://github.com/opencart/opencart/pull/3293) ([chris-wm](https://github.com/chris-wm))
- geocode language [\#3283](https://github.com/opencart/opencart/pull/3283) ([pine3ree](https://github.com/pine3ree))
- add russian ruble to pp\_standart [\#3267](https://github.com/opencart/opencart/pull/3267) ([opencart-russia](https://github.com/opencart-russia))
- Update opencart.sql [\#3244](https://github.com/opencart/opencart/pull/3244) ([vivekkiran](https://github.com/vivekkiran))
- Added Croatia to the list of EU countries [\#3237](https://github.com/opencart/opencart/pull/3237) ([tiborbesze86](https://github.com/tiborbesze86))
- Update usps.php [\#3222](https://github.com/opencart/opencart/pull/3222) ([billynoah](https://github.com/billynoah))
- Contact POST url with regards to SSL [\#3215](https://github.com/opencart/opencart/pull/3215) ([rredpoppy](https://github.com/rredpoppy))
- Add "required" asterisk to locale field [\#3208](https://github.com/opencart/opencart/pull/3208) ([sifRAWR](https://github.com/sifRAWR))
- Encryption is not required for 'File' type option [\#3197](https://github.com/opencart/opencart/pull/3197) ([hydrowire](https://github.com/hydrowire))
- use mt\_rand\(\) instead of rand\(\) [\#3147](https://github.com/opencart/opencart/pull/3147) ([skyosev](https://github.com/skyosev))
- Added PHPUnit bootstrap.php file to .gitignore [\#3125](https://github.com/opencart/opencart/pull/3125) ([incarnate](https://github.com/incarnate))
- Fixed issue 3121 [\#3122](https://github.com/opencart/opencart/pull/3122) ([mrnfrancesco](https://github.com/mrnfrancesco))
- Fixed issue \#3116 [\#3117](https://github.com/opencart/opencart/pull/3117) ([mrnfrancesco](https://github.com/mrnfrancesco))
- add event \*.admin.language.\* [\#3113](https://github.com/opencart/opencart/pull/3113) ([halfhope](https://github.com/halfhope))
- Fixed issue 3101 [\#3105](https://github.com/opencart/opencart/pull/3105) ([mrnfrancesco](https://github.com/mrnfrancesco))
- Country named corrected [\#3098](https://github.com/opencart/opencart/pull/3098) ([syamvilakudy](https://github.com/syamvilakudy))
- Modification to pre.order.history.add event trigger [\#3092](https://github.com/opencart/opencart/pull/3092) ([OpenCartAddons](https://github.com/OpenCartAddons))
- State name changed [\#3065](https://github.com/opencart/opencart/pull/3065) ([syamvilakudy](https://github.com/syamvilakudy))
## [2.0.3.1](https://github.com/opencart/opencart/tree/2.0.3.1) (2015-05-27)
[Full Changelog](https://github.com/opencart/opencart/compare/2.0.3.0...2.0.3.1)
**Closed issues:**
- Write review undefined variable: site\_key issue [\#3061](https://github.com/opencart/opencart/issues/3061)
- we are not getting any email while making new registration in 2.0.3.0 opencart [\#3060](https://github.com/opencart/opencart/issues/3060)
- Google Sitemap error Oc 2.0.0-2.0.3.0 [\#3057](https://github.com/opencart/opencart/issues/3057)
- Filemanager image will not open if anyone image has filename empty [\#3056](https://github.com/opencart/opencart/issues/3056)
- Opencart 2.0.1.0 add order in admin [\#3055](https://github.com/opencart/opencart/issues/3055)
- image manager backdrop lost [\#3054](https://github.com/opencart/opencart/issues/3054)
- OC 2.0.3.0 - admin/model/openbay/amazonus.php [\#3053](https://github.com/opencart/opencart/issues/3053)
- OC 2.0.1.0-2.0.3.0 redirect bug in authorizenet\_sim.php [\#3052](https://github.com/opencart/opencart/issues/3052)
- OC 2.0.1.0-2.0.3.0 Incomplete for-attribute in information\_form.tpl [\#3051](https://github.com/opencart/opencart/issues/3051)
- Not load image [\#3050](https://github.com/opencart/opencart/issues/3050)
- Error: RCPT TO not accepted from server! [\#3049](https://github.com/opencart/opencart/issues/3049)
- OC 2.0.2.0-2.0.3.0 Insecure Cancel-links in various admin payment controllers [\#3048](https://github.com/opencart/opencart/issues/3048)
- Problem with cart edit method. [\#3045](https://github.com/opencart/opencart/issues/3045)
- OC 2.0.2.0-2.0.3.0 Bug in admin/controller/module/html.php [\#3044](https://github.com/opencart/opencart/issues/3044)
- File Upload doesn't work for PDF files \(Incorrect file type\) [\#3043](https://github.com/opencart/opencart/issues/3043)
- OC2.0.3 Maintenance Mode switch On automatically [\#3042](https://github.com/opencart/opencart/issues/3042)
- use admin/marketing/mail function PHP Warning: Invalid argument supplied for foreach\(\) in //system/library/mail.php on line 22 [\#3041](https://github.com/opencart/opencart/issues/3041)
- In my account on /index.php?route=account/return is an blank page [\#3040](https://github.com/opencart/opencart/issues/3040)
- OC 2.0.2.0 - 2.0.3.0 Unitialised variable $data\['totals'\] [\#3038](https://github.com/opencart/opencart/issues/3038)
- Menu bar buttons not clickable big problem in mobile version [\#3036](https://github.com/opencart/opencart/issues/3036)
- button currency error v2.0.3.0 [\#3035](https://github.com/opencart/opencart/issues/3035)
- oc 2.0.0.0 - 2.0.3.0 feed: google base [\#3034](https://github.com/opencart/opencart/issues/3034)
- email bug for 2.0.3 [\#3032](https://github.com/opencart/opencart/issues/3032)
- Edit Order - field validation issue [\#3031](https://github.com/opencart/opencart/issues/3031)
- Image manager issue: Warning: File could not be uploaded for an unknown reason [\#3030](https://github.com/opencart/opencart/issues/3030)
- Few bugs fix [\#3028](https://github.com/opencart/opencart/issues/3028)
- $this-\>config-\>get\('config\_mail\_protocol'\) returns NULL [\#3026](https://github.com/opencart/opencart/issues/3026)
- Feature: choose currency in admin order add / edit [\#2965](https://github.com/opencart/opencart/issues/2965)
- owl-carousel issue on Safari browser [\#2921](https://github.com/opencart/opencart/issues/2921)
- Custom customer field sort order not working [\#2907](https://github.com/opencart/opencart/issues/2907)
**Merged pull requests:**
- Added permission Anti-Fraud [\#3039](https://github.com/opencart/opencart/pull/3039) ([ManoelVidal](https://github.com/ManoelVidal))
- Added $\_\['entry\_db\_port'\] and $\_\['error\_db\_port'\] [\#3037](https://github.com/opencart/opencart/pull/3037) ([ManoelVidal](https://github.com/ManoelVidal))
- \#2921 owl-carousel flashing text on Safari [\#3033](https://github.com/opencart/opencart/pull/3033) ([Dvir-Julius](https://github.com/Dvir-Julius))
## [2.0.3.0](https://github.com/opencart/opencart/tree/2.0.3.0) (2015-05-20)
[Full Changelog](https://github.com/opencart/opencart/compare/2.0.2.0...2.0.3.0)
**Closed issues:**
- cross domain issues [\#3025](https://github.com/opencart/opencart/issues/3025)
- Not getting email notifications for orders in opencart 2.0.1.1 [\#3020](https://github.com/opencart/opencart/issues/3020)
- Possible bug with order status. [\#3018](https://github.com/opencart/opencart/issues/3018)
- Bug in admin/model/setting/setting.php [\#3015](https://github.com/opencart/opencart/issues/3015)
- Installing opencart theme on localhost [\#3014](https://github.com/opencart/opencart/issues/3014)
- Cannot update quantity when using SSL [\#3013](https://github.com/opencart/opencart/issues/3013)
- Bug in admin/model/localisation/language.php [\#3012](https://github.com/opencart/opencart/issues/3012)
- Account -\> register -\> emailing to admin [\#3009](https://github.com/opencart/opencart/issues/3009)
- In Opencart 2.0 OCMod, modified file is not used [\#3008](https://github.com/opencart/opencart/issues/3008)
- API Issue / Permissions [\#3006](https://github.com/opencart/opencart/issues/3006)
- Bug to update the quantity of a product when you have an option [\#3005](https://github.com/opencart/opencart/issues/3005)
- Unable to modify admin views using OCMOD [\#3004](https://github.com/opencart/opencart/issues/3004)
- Edit order fails [\#3003](https://github.com/opencart/opencart/issues/3003)
- login with paypal 2.0.2 [\#3002](https://github.com/opencart/opencart/issues/3002)
- Table .order\_fraud doesn't exist [\#3001](https://github.com/opencart/opencart/issues/3001)
- language problem during install steps [\#3000](https://github.com/opencart/opencart/issues/3000)
- Price presentation fault [\#2999](https://github.com/opencart/opencart/issues/2999)
- Admin order edit attempting to query products instead of order products [\#2997](https://github.com/opencart/opencart/issues/2997)
- error on admin login after first install [\#2996](https://github.com/opencart/opencart/issues/2996)
- Login and Pay With Amazon module not working [\#2994](https://github.com/opencart/opencart/issues/2994)
- Cannot Update Order Status in 2.0.1.1 [\#2993](https://github.com/opencart/opencart/issues/2993)
- www and non-www add to cart [\#2992](https://github.com/opencart/opencart/issues/2992)
- Proposition regarding template use [\#2991](https://github.com/opencart/opencart/issues/2991)
- Missing check in install step 2 [\#2986](https://github.com/opencart/opencart/issues/2986)
- Update quantity from cart not \(always\) working [\#2980](https://github.com/opencart/opencart/issues/2980)
- Free shipping Coupons [\#2979](https://github.com/opencart/opencart/issues/2979)
- Error in admin/model/catalog/product.php [\#2977](https://github.com/opencart/opencart/issues/2977)
- \*\*\*\*\*\*\*\*\*\* {edited by ManaKill} [\#2976](https://github.com/opencart/opencart/issues/2976)
- do I not need rewritebase file htaccess [\#2975](https://github.com/opencart/opencart/issues/2975)
- Affiliate links broken / not tracking sales / non working buttons [\#2974](https://github.com/opencart/opencart/issues/2974)
- Affiliate links broken / not tracking sales / non working buttons [\#2973](https://github.com/opencart/opencart/issues/2973)
- OCMOD \<operation error="skip"\> ABORTING [\#2972](https://github.com/opencart/opencart/issues/2972)
- Bug in admin/controller/catalog/manufacturer.php [\#2971](https://github.com/opencart/opencart/issues/2971)
- Bug in admin/controller/catalog/category.php [\#2970](https://github.com/opencart/opencart/issues/2970)
- no transaction on returns [\#2968](https://github.com/opencart/opencart/issues/2968)
- Custom database port [\#2967](https://github.com/opencart/opencart/issues/2967)
- Filters not getting displayed [\#2966](https://github.com/opencart/opencart/issues/2966)
- Virtual Merchant Converge Issue [\#2964](https://github.com/opencart/opencart/issues/2964)
- admin/catalog/../autocomplete array\_multisort unneeded. [\#2963](https://github.com/opencart/opencart/issues/2963)
- Backend order edit just default currency [\#2962](https://github.com/opencart/opencart/issues/2962)
- Coupon,Gift can't limit use,and database no record ,please help!!! [\#2960](https://github.com/opencart/opencart/issues/2960)
- Region/State Issue [\#2959](https://github.com/opencart/opencart/issues/2959)
- UNDEFINED undefined Success: You have added "PRODUCT ADDED TO YOUR CART! [\#2957](https://github.com/opencart/opencart/issues/2957)
- Error code on the top of web admin [\#2956](https://github.com/opencart/opencart/issues/2956)
- move theme preview image from root image folder to theme image folder [\#2955](https://github.com/opencart/opencart/issues/2955)
- Errors after update and same error on fresh install with old DB [\#2952](https://github.com/opencart/opencart/issues/2952)
- encoding of log modifactions is not utf-8 [\#2951](https://github.com/opencart/opencart/issues/2951)
- Incorrect order item shows when editting [\#2947](https://github.com/opencart/opencart/issues/2947)
- Repeat Error in customer.php [\#2946](https://github.com/opencart/opencart/issues/2946)
- paypal express checkout module [\#2943](https://github.com/opencart/opencart/issues/2943)
- method getTotalSales throws an exception when num\_rows = 0 [\#2942](https://github.com/opencart/opencart/issues/2942)
- Create new order by Admin [\#2941](https://github.com/opencart/opencart/issues/2941)
- Gift Vourcher recepient never recieved Email [\#2937](https://github.com/opencart/opencart/issues/2937)
- Bug in admin/controller/module/bestseller.php [\#2936](https://github.com/opencart/opencart/issues/2936)
- Question about github [\#2934](https://github.com/opencart/opencart/issues/2934)
- PayPal currencies list lack RUB [\#2932](https://github.com/opencart/opencart/issues/2932)
- Modification refresh results maintenance mode on [\#2931](https://github.com/opencart/opencart/issues/2931)
- SMTP host config setting is wrong [\#2930](https://github.com/opencart/opencart/issues/2930)
- Handling Total Operator Typo - Greater Than instead of less than [\#2929](https://github.com/opencart/opencart/issues/2929)
- Skrill Payment error on php + URL + Image [\#2927](https://github.com/opencart/opencart/issues/2927)
- Unable to Edit Orders [\#2926](https://github.com/opencart/opencart/issues/2926)
- ocMod regex operations are never trimmed [\#2925](https://github.com/opencart/opencart/issues/2925)
- Multiple orders on checkout [\#2920](https://github.com/opencart/opencart/issues/2920)
- Language load issues [\#2919](https://github.com/opencart/opencart/issues/2919)
- Cash on Delivery payment lacks loading "data-loading-text" attribute [\#2918](https://github.com/opencart/opencart/issues/2918)
- \*\*\*\*\*\*\*\*\*\* {edited by ManaKill} [\#2915](https://github.com/opencart/opencart/issues/2915)
- Cart add\(\) function doesn't follow minimum requirements [\#2914](https://github.com/opencart/opencart/issues/2914)
- Default information links in header/footer has no way to setup "SEO" urls [\#2913](https://github.com/opencart/opencart/issues/2913)
- Opencart 2 filter module not work [\#2912](https://github.com/opencart/opencart/issues/2912)
- Amazon modules/Payments [\#2911](https://github.com/opencart/opencart/issues/2911)
- Customer Registration, blank screen, Error: E-Mail to required! [\#2910](https://github.com/opencart/opencart/issues/2910)
- Language locale values do not match web standards [\#2909](https://github.com/opencart/opencart/issues/2909)
- language files [\#2908](https://github.com/opencart/opencart/issues/2908)
- ADMIN LOGIN NOT WORKING [\#2906](https://github.com/opencart/opencart/issues/2906)
- Main store always using "home" layout, despite of selection in "Settings" [\#2905](https://github.com/opencart/opencart/issues/2905)
- Manual Order status change triggers email to customer regardless of notification flag [\#2904](https://github.com/opencart/opencart/issues/2904)
- Opencart is not loading english.php defined text variables [\#2903](https://github.com/opencart/opencart/issues/2903)
- Opencart 1.5.6.4 : COD orders jumps to missing orders [\#2901](https://github.com/opencart/opencart/issues/2901)
- install step 3 coming up blank after submitting database details [\#2899](https://github.com/opencart/opencart/issues/2899)
- Customer Service, Extra, My Accounts pages are Not [\#2898](https://github.com/opencart/opencart/issues/2898)
- error after buy gift voucher and some problem [\#2896](https://github.com/opencart/opencart/issues/2896)
- re-Captcha does not work on reviews [\#2894](https://github.com/opencart/opencart/issues/2894)
- Category Product Count Not working [\#2893](https://github.com/opencart/opencart/issues/2893)
- On order update, Click notify Customer they dont get notified OC 2.0.2.0 [\#2892](https://github.com/opencart/opencart/issues/2892)
- Bootstrap still contains some dubble stylesheets on container [\#2891](https://github.com/opencart/opencart/issues/2891)
- Refine Search still missing clear button [\#2890](https://github.com/opencart/opencart/issues/2890)
- Mail: SMTP "getaddrinfo failed" error in OpenCart 2.0.2.0 [\#2887](https://github.com/opencart/opencart/issues/2887)
- SEO not working in IE, firefox or chrome [\#2885](https://github.com/opencart/opencart/issues/2885)
- OCMOD wildcard doesn't work anymore [\#2884](https://github.com/opencart/opencart/issues/2884)
- Getting error on front end and back end " start up error " please resolve it. [\#2883](https://github.com/opencart/opencart/issues/2883)
- Duplicate URL After SEO Enabled [\#2882](https://github.com/opencart/opencart/issues/2882)
- OC 2.0.2.0 buttons dont work in google chrome [\#2880](https://github.com/opencart/opencart/issues/2880)
- Emails not working in 2.0.2.0 [\#2879](https://github.com/opencart/opencart/issues/2879)
- New vqmod/ocmod system [\#2877](https://github.com/opencart/opencart/issues/2877)
- Amazon modules wont apear in any Layout [\#2876](https://github.com/opencart/opencart/issues/2876)
- Shared SSL broken [\#2875](https://github.com/opencart/opencart/issues/2875)
- Wrong query in admin/model/report/product [\#2874](https://github.com/opencart/opencart/issues/2874)
- SEO URLs ampersands in product tags/keywords [\#2873](https://github.com/opencart/opencart/issues/2873)
- OC 2.0.2.0 OCMOD path wildcard with braces [\#2872](https://github.com/opencart/opencart/issues/2872)
- missing payment images [\#2871](https://github.com/opencart/opencart/issues/2871)
- Code mixture .. [\#2870](https://github.com/opencart/opencart/issues/2870)
- language \> name of main file [\#2866](https://github.com/opencart/opencart/issues/2866)
- \[admin\] V.2020 product options don't show [\#2865](https://github.com/opencart/opencart/issues/2865)
- Add to cart button available when out of stock [\#2864](https://github.com/opencart/opencart/issues/2864)
- output date in mails [\#2863](https://github.com/opencart/opencart/issues/2863)
- \system\library\mail.php ENT\_QUOTES [\#2861](https://github.com/opencart/opencart/issues/2861)
- openbay/ebay\_new.tpl small errors [\#2860](https://github.com/opencart/opencart/issues/2860)
- undefined variable json when updating order history [\#2857](https://github.com/opencart/opencart/issues/2857)
- OcMod on OC 2.0.1.1 not correct search code [\#2855](https://github.com/opencart/opencart/issues/2855)
- Please close if i have missed read email error [\#2854](https://github.com/opencart/opencart/issues/2854)
- Can't send e-mail [\#2852](https://github.com/opencart/opencart/issues/2852)
- OC 2.0.2.0 [\#2851](https://github.com/opencart/opencart/issues/2851)
- World Pay - on Module - gives 404 error if clicked - OC 2.0.2.1 [\#2850](https://github.com/opencart/opencart/issues/2850)
- Category Bug \(OpenCart 1.5.6.2\) [\#2849](https://github.com/opencart/opencart/issues/2849)
- Log In With PayPal OC 2.0.2.1 [\#2848](https://github.com/opencart/opencart/issues/2848)
- Can't Edit or Add orders 2.0.1.1 there's a reason! [\#2844](https://github.com/opencart/opencart/issues/2844)
- If the new G-recaptcha is enabled, the reviews are not sent in OC2.0.2.0 [\#2843](https://github.com/opencart/opencart/issues/2843)
- Dashboard Stats don't show on long month [\#2842](https://github.com/opencart/opencart/issues/2842)
- OC 2.0.2.0 [\#2841](https://github.com/opencart/opencart/issues/2841)
- Mail error [\#2840](https://github.com/opencart/opencart/issues/2840)
- reCaptcha validation on product reviews [\#2839](https://github.com/opencart/opencart/issues/2839)
- Paypal Express in 2.0.1.1 forces all currencies to USD, incorrectly converts value. [\#2836](https://github.com/opencart/opencart/issues/2836)
- Fatal error: Unsupported operand types in line 711 [\#2834](https://github.com/opencart/opencart/issues/2834)
- Customer.login event only called if login in via admin [\#2832](https://github.com/opencart/opencart/issues/2832)
- Composer and auto-loading support [\#2828](https://github.com/opencart/opencart/issues/2828)
- opencart.sql small error [\#2820](https://github.com/opencart/opencart/issues/2820)
- ocmod cannot handle renamed admin folder [\#2816](https://github.com/opencart/opencart/issues/2816)
- multistore currency conversions issues in catalog/controller/payment/pp\_express.php? [\#2768](https://github.com/opencart/opencart/issues/2768)
**Merged pull requests:**
- OpenBay update to latest v2831 [\#3027](https://github.com/opencart/opencart/pull/3027) ([jamesallsup](https://github.com/jamesallsup))
- Fixed Maxmind not load on order info page [\#3021](https://github.com/opencart/opencart/pull/3021) ([eka7a](https://github.com/eka7a))
- Bug fix \#3015 [\#3017](https://github.com/opencart/opencart/pull/3017) ([Newman101](https://github.com/Newman101))
- reverting cookie name to correct value and adding comments to warn ag… [\#3010](https://github.com/opencart/opencart/pull/3010) ([chris-wm](https://github.com/chris-wm))
- Full path disclosure due to Undefined index [\#2998](https://github.com/opencart/opencart/pull/2998) ([mrnfrancesco](https://github.com/mrnfrancesco))
- Fixed security issue on log filename [\#2995](https://github.com/opencart/opencart/pull/2995) ([mrnfrancesco](https://github.com/mrnfrancesco))
- G2Apay: Adding integration files [\#2987](https://github.com/opencart/opencart/pull/2987) ([chris-wm](https://github.com/chris-wm))
- FAO James - Bug fixes First Data: [\#2985](https://github.com/opencart/opencart/pull/2985) ([chris-wm](https://github.com/chris-wm))
- Update installer.php [\#2984](https://github.com/opencart/opencart/pull/2984) ([QualityWorks](https://github.com/QualityWorks))
- Fix syntax error [\#2983](https://github.com/opencart/opencart/pull/2983) ([manashcse11](https://github.com/manashcse11))
- Remove 2 "\)" extra [\#2982](https://github.com/opencart/opencart/pull/2982) ([valdeir2000](https://github.com/valdeir2000))
- Displays errors custom\_field field [\#2969](https://github.com/opencart/opencart/pull/2969) ([valdeir2000](https://github.com/valdeir2000))
- Lebanon regions added [\#2961](https://github.com/opencart/opencart/pull/2961) ([syamvilakudy](https://github.com/syamvilakudy))
- added fraudlabs pro module [\#2958](https://github.com/opencart/opencart/pull/2958) ([chrislim2888](https://github.com/chrislim2888))
- Zone name corrected [\#2954](https://github.com/opencart/opencart/pull/2954) ([syamvilakudy](https://github.com/syamvilakudy))
- Position correction of custom fields in admin panel [\#2953](https://github.com/opencart/opencart/pull/2953) ([valdeir2000](https://github.com/valdeir2000))
- Added missing jQuery link to order invoice and order shipping. [\#2949](https://github.com/opencart/opencart/pull/2949) ([longlivedigital](https://github.com/longlivedigital))
- Update coupon.php [\#2945](https://github.com/opencart/opencart/pull/2945) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Fixed changelog typo [\#2938](https://github.com/opencart/opencart/pull/2938) ([radarhere](https://github.com/radarhere))
- Update cart.php [\#2935](https://github.com/opencart/opencart/pull/2935) ([osworx](https://github.com/osworx))
- Small Fixes - Trying to do it RIGHT! [\#2928](https://github.com/opencart/opencart/pull/2928) ([stockmaster](https://github.com/stockmaster))
- Hotfix/amazon [\#2922](https://github.com/opencart/opencart/pull/2922) ([chris-wm](https://github.com/chris-wm))
- Update modification.php [\#2895](https://github.com/opencart/opencart/pull/2895) ([osworx](https://github.com/osworx))
- Hotfix/amazon [\#2889](https://github.com/opencart/opencart/pull/2889) ([chris-wm](https://github.com/chris-wm))
- BUG when sending the e-mail to admin [\#2888](https://github.com/opencart/opencart/pull/2888) ([opencart-russia](https://github.com/opencart-russia))
- ensure it's a file, include\_once [\#2858](https://github.com/opencart/opencart/pull/2858) ([pine3ree](https://github.com/pine3ree))
- remove unneeded array\_merge calls [\#2856](https://github.com/opencart/opencart/pull/2856) ([pine3ree](https://github.com/pine3ree))
- Fix pagination issue [\#2853](https://github.com/opencart/opencart/pull/2853) ([mariavilaro](https://github.com/mariavilaro))
- Update common.js [\#2814](https://github.com/opencart/opencart/pull/2814) ([TomekWW](https://github.com/TomekWW))
- removed unused empty function [\#2634](https://github.com/opencart/opencart/pull/2634) ([tomkoo](https://github.com/tomkoo))
- removed unused empty function [\#2632](https://github.com/opencart/opencart/pull/2632) ([tomkoo](https://github.com/tomkoo))
## [2.0.2.0](https://github.com/opencart/opencart/tree/2.0.2.0) (2015-03-30)
[Full Changelog](https://github.com/opencart/opencart/compare/2.0.1.1...2.0.2.0)
**Closed issues:**
- Admin config file error [\#2823](https://github.com/opencart/opencart/issues/2823)
- Feature request: Persian/Arabic Language and RTL Layout [\#2819](https://github.com/opencart/opencart/issues/2819)
- Order model : language filename [\#2818](https://github.com/opencart/opencart/issues/2818)
- bower.json [\#2815](https://github.com/opencart/opencart/issues/2815)
- Langauge Option Not Working Properly In My Server. [\#2812](https://github.com/opencart/opencart/issues/2812)
- Html.tpl - Html Module. [\#2811](https://github.com/opencart/opencart/issues/2811)
- Issue at the Extension Installer [\#2809](https://github.com/opencart/opencart/issues/2809)
- New g-recAptcha not working [\#2808](https://github.com/opencart/opencart/issues/2808)
- Multi-currency issue in order\_info \(currency\_code & amount not matched\) [\#2807](https://github.com/opencart/opencart/issues/2807)
- BUG!! Editing orders / deleting orders [\#2803](https://github.com/opencart/opencart/issues/2803)
- It's a Bug\(?\) Multistore can't find images and Stylesheets \(404 Error\) [\#2802](https://github.com/opencart/opencart/issues/2802)
- need to change MyIsam to InnoDB [\#2800](https://github.com/opencart/opencart/issues/2800)
- Class 'Image' not found in admin/model/tool/image.php [\#2795](https://github.com/opencart/opencart/issues/2795)
- Deleting old Github repositories [\#2793](https://github.com/opencart/opencart/issues/2793)
- No able to register on forum| PlayThru game not getting displayed [\#2792](https://github.com/opencart/opencart/issues/2792)
- Administration - Menu layout - 3rd level [\#2791](https://github.com/opencart/opencart/issues/2791)
- Spam referral links Co.lumb [\#2787](https://github.com/opencart/opencart/issues/2787)
- Not possible to ad zone to county in Geo Zones [\#2786](https://github.com/opencart/opencart/issues/2786)
- Sending Emails to Customers with non-active member too [\#2780](https://github.com/opencart/opencart/issues/2780)
- Dirty URL [\#2779](https://github.com/opencart/opencart/issues/2779)
- Paypal refund in OpenCart 2.0.1.1 \(rs.6\) [\#2778](https://github.com/opencart/opencart/issues/2778)
- Different Checkout prices when purchasing the same items [\#2776](https://github.com/opencart/opencart/issues/2776)
- Editing orders / deleting orders [\#2775](https://github.com/opencart/opencart/issues/2775)
- bad sitemap.xml [\#2770](https://github.com/opencart/opencart/issues/2770)
- " Symbol Issue [\#2769](https://github.com/opencart/opencart/issues/2769)
- missing code in admin/\*\*\*/affiliate.php [\#2766](https://github.com/opencart/opencart/issues/2766)
- Payment Methods sould refresh when a Shipping Method is selected in an Order from the Admin Panel [\#2765](https://github.com/opencart/opencart/issues/2765)
- Opencart 2.0.1.1. admin/controller/extention/modification.php issue [\#2764](https://github.com/opencart/opencart/issues/2764)
- Need to understand how we can change / modify opencart 2.0 code base. [\#2763](https://github.com/opencart/opencart/issues/2763)
- Update new WorldPay module file standards [\#2756](https://github.com/opencart/opencart/issues/2756)
- product copy 2.0.1.2\_rc [\#2754](https://github.com/opencart/opencart/issues/2754)
- Review - Submit Button is now working on Mobile, Pad. [\#2752](https://github.com/opencart/opencart/issues/2752)
- own Paypal pending status is ignored [\#2750](https://github.com/opencart/opencart/issues/2750)
- Order edit [\#2749](https://github.com/opencart/opencart/issues/2749)
- Product Option Saving Issue [\#2748](https://github.com/opencart/opencart/issues/2748)
- New G-recaptcha not working [\#2744](https://github.com/opencart/opencart/issues/2744)
- FYI - Royal mail prices changes [\#2743](https://github.com/opencart/opencart/issues/2743)
- Open Cart Contact Form Fails [\#2742](https://github.com/opencart/opencart/issues/2742)
- Bug on category template [\#2741](https://github.com/opencart/opencart/issues/2741)
- Missing jQuery [\#2740](https://github.com/opencart/opencart/issues/2740)
- Tool bar Icons & Buttons are Not Lording perfectly most of the time. [\#2739](https://github.com/opencart/opencart/issues/2739)
- Invalid call $language-\>load\('default'\) [\#2735](https://github.com/opencart/opencart/issues/2735)
- opencart Hide Empty Categories [\#2734](https://github.com/opencart/opencart/issues/2734)
- Core SEO Clean URLs suck. Lets end the madness [\#2733](https://github.com/opencart/opencart/issues/2733)
- Error with 2.0 mail.php rolled back to 1.5.6 mail.php and works fine [\#2729](https://github.com/opencart/opencart/issues/2729)
- settings not accepting email id with .clothing TLD [\#2727](https://github.com/opencart/opencart/issues/2727)
- OCMOD continuous loop [\#2725](https://github.com/opencart/opencart/issues/2725)
- french translation of opencart [\#2724](https://github.com/opencart/opencart/issues/2724)
- Hide english tab if language is disabled [\#2721](https://github.com/opencart/opencart/issues/2721)
- Not accepting email ID with .clothing tld [\#2718](https://github.com/opencart/opencart/issues/2718)
- product count showing value wrong [\#2717](https://github.com/opencart/opencart/issues/2717)
- Warning: array\_key\_exists\(\): [\#2716](https://github.com/opencart/opencart/issues/2716)
- Wrong folder permissions after extension \(ftp\) install [\#2715](https://github.com/opencart/opencart/issues/2715)
- Order History showing other customers' information [\#2714](https://github.com/opencart/opencart/issues/2714)
- /system/engine/action.php limit the route [\#2713](https://github.com/opencart/opencart/issues/2713)
- customer orders report totals wrong [\#2709](https://github.com/opencart/opencart/issues/2709)
- Admin review's notification is not working properly [\#2708](https://github.com/opencart/opencart/issues/2708)
- Newsletter success AJAX stopped prematurely [\#2707](https://github.com/opencart/opencart/issues/2707)
- Quantity is multiplied in admin order form [\#2703](https://github.com/opencart/opencart/issues/2703)
- SyntaxError: Unexpected Token [\#2698](https://github.com/opencart/opencart/issues/2698)
- Path Replacement [\#2696](https://github.com/opencart/opencart/issues/2696)
- Had to add column to table for PayPal Express Checkout [\#2695](https://github.com/opencart/opencart/issues/2695)
- Error when attempting to create new customer from admin [\#2694](https://github.com/opencart/opencart/issues/2694)
- "E-Mail Message required!" when I try to email newsletter [\#2693](https://github.com/opencart/opencart/issues/2693)
- Customer email address rejected [\#2692](https://github.com/opencart/opencart/issues/2692)
- Unable to install Opencart on ISS8 [\#2690](https://github.com/opencart/opencart/issues/2690)
- Order History showing other customers' information [\#2689](https://github.com/opencart/opencart/issues/2689)
- Module - HTML Content Module [\#2688](https://github.com/opencart/opencart/issues/2688)
- Error Messages [\#2687](https://github.com/opencart/opencart/issues/2687)
- Two installations under the same domain has huge security issue [\#2686](https://github.com/opencart/opencart/issues/2686)
- Admin dashboard user access permissions [\#2685](https://github.com/opencart/opencart/issues/2685)
- .htaccess "download" wrong rule [\#2684](https://github.com/opencart/opencart/issues/2684)
- Limit in category autocomplete [\#2683](https://github.com/opencart/opencart/issues/2683)
- Cannot use string offset as an array [\#2681](https://github.com/opencart/opencart/issues/2681)
- Watermark error [\#2678](https://github.com/opencart/opencart/issues/2678)
- Directory structure misplace [\#2670](https://github.com/opencart/opencart/issues/2670)
- array\_key\_exists\(\) [\#2669](https://github.com/opencart/opencart/issues/2669)
- Notification Area - Reviews [\#2666](https://github.com/opencart/opencart/issues/2666)
- Reviews Status [\#2665](https://github.com/opencart/opencart/issues/2665)
- g-recaptcha error on submission \(review, contact, return\) [\#2663](https://github.com/opencart/opencart/issues/2663)
- Undefined index: recurring\_id [\#2662](https://github.com/opencart/opencart/issues/2662)
- Admin\>Modules\>Featured-Home Page : gives error if no products are added [\#2660](https://github.com/opencart/opencart/issues/2660)
- Confirm \#2636 [\#2659](https://github.com/opencart/opencart/issues/2659)
- Recent activity links not correct when a customer is waiting approval [\#2658](https://github.com/opencart/opencart/issues/2658)
- Review Does not give proper message [\#2657](https://github.com/opencart/opencart/issues/2657)
- Reports product viewed. wrong method used, corrected method was deleted. [\#2656](https://github.com/opencart/opencart/issues/2656)
- Voucher can be used more than its value [\#2653](https://github.com/opencart/opencart/issues/2653)
- Filter Display [\#2652](https://github.com/opencart/opencart/issues/2652)
- Errors in customer admin not working well [\#2649](https://github.com/opencart/opencart/issues/2649)
- html\_entity\_decode\(\) should be called before strip\_tags\(\) in mail system [\#2648](https://github.com/opencart/opencart/issues/2648)
- Maintenance mode should be triggered when important modifications are missing [\#2647](https://github.com/opencart/opencart/issues/2647)
- Send voucher function is automaticly sending to all customers with vouchers [\#2646](https://github.com/opencart/opencart/issues/2646)
- Opencart 2.0 voucher not change value after use [\#2645](https://github.com/opencart/opencart/issues/2645)
- DIR\_UPLOAD missing from CLI installations [\#2642](https://github.com/opencart/opencart/issues/2642)
- filemanger overwriting files \(solution\) [\#2639](https://github.com/opencart/opencart/issues/2639)
- filter module opencart not working [\#2638](https://github.com/opencart/opencart/issues/2638)
- Affiliate Forgottern password [\#2637](https://github.com/opencart/opencart/issues/2637)
- Opencart Order Issue in back end. [\#2636](https://github.com/opencart/opencart/issues/2636)
- OCMod Error run SQL [\#2635](https://github.com/opencart/opencart/issues/2635)
- Bug in admin/controller/extension/modification.php [\#2633](https://github.com/opencart/opencart/issues/2633)
- controller/checkout/cart -- $quantity [\#2631](https://github.com/opencart/opencart/issues/2631)
- Reports\>Sales\>Orders bug [\#2630](https://github.com/opencart/opencart/issues/2630)
- Cart not update when add a product from a grid table or a related product [\#2629](https://github.com/opencart/opencart/issues/2629)
- Template Default Admin Menu Problem [\#2628](https://github.com/opencart/opencart/issues/2628)
- Email regex [\#2627](https://github.com/opencart/opencart/issues/2627)
- Modification OCMOD [\#2623](https://github.com/opencart/opencart/issues/2623)
- Upload and install upgrade Opencart [\#2622](https://github.com/opencart/opencart/issues/2622)
- friends Goods does not see the table , please help [\#2621](https://github.com/opencart/opencart/issues/2621)
- Testing Forum [\#2620](https://github.com/opencart/opencart/issues/2620)
- Opencart Problem [\#2619](https://github.com/opencart/opencart/issues/2619)
- openbay \(PHP Notice: Undefined index: category\_id\) [\#2618](https://github.com/opencart/opencart/issues/2618)
- Mail password is HTML encoded [\#2616](https://github.com/opencart/opencart/issues/2616)
- New Product add [\#2615](https://github.com/opencart/opencart/issues/2615)
- HTML module Uninitialized string offset: 1 [\#2614](https://github.com/opencart/opencart/issues/2614)
- Google Analytics code not updating from admin settings config [\#2611](https://github.com/opencart/opencart/issues/2611)
- Ajax upload bug \(solved\) [\#2610](https://github.com/opencart/opencart/issues/2610)
- Image manager upload image spam success messagebox [\#2609](https://github.com/opencart/opencart/issues/2609)
- Error into file catalog/controller/common/content\_top.php [\#2607](https://github.com/opencart/opencart/issues/2607)
- Product edit after upgrade [\#2605](https://github.com/opencart/opencart/issues/2605)
- Add a Modification OCMOD [\#2604](https://github.com/opencart/opencart/issues/2604)
- Try upload functionality OCMOD [\#2603](https://github.com/opencart/opencart/issues/2603)
- File config-dist.php without content [\#2602](https://github.com/opencart/opencart/issues/2602)
- multistore currency conversions issues in catalog/controller/payment/pp\_express.php? [\#2601](https://github.com/opencart/opencart/issues/2601)
- Opencart 2.0.1.1 problems with moving [\#2600](https://github.com/opencart/opencart/issues/2600)
- syntaxError: Unexpected token \< OK \<b\>Notice\</b\>: Error: RCPT TO not accepted from server! in \<b\>/system/library/mail.php\</b\> on line \<b\>345\</b\> [\#2599](https://github.com/opencart/opencart/issues/2599)
- Removing tooltip method inconsistent or non existent \(solution\) [\#2595](https://github.com/opencart/opencart/issues/2595)
- not wasting your time, there is 20px at bottom of slider images [\#2593](https://github.com/opencart/opencart/issues/2593)
- Error: Subquery returns more than 1 row [\#2591](https://github.com/opencart/opencart/issues/2591)
- Message Error Template + Review Success Message not showing [\#2590](https://github.com/opencart/opencart/issues/2590)
- Order item quantity and total keep inflating [\#2589](https://github.com/opencart/opencart/issues/2589)
- OC 2.0.1.1 Reports\>Products\>Purchased - Inflated amounts in Totals column [\#2588](https://github.com/opencart/opencart/issues/2588)
- Can't edit an order, getting syntax error [\#2587](https://github.com/opencart/opencart/issues/2587)
- Getting error on checkout [\#2586](https://github.com/opencart/opencart/issues/2586)
- Payment: PayPal Standard [\#2585](https://github.com/opencart/opencart/issues/2585)
- Navigation not working - IP Addressess tab in the customers screen [\#2582](https://github.com/opencart/opencart/issues/2582)
- Gift Vouchers, email sent to all even when only one is selected [\#2581](https://github.com/opencart/opencart/issues/2581)
- special price cancels out multiple quantity discount [\#2580](https://github.com/opencart/opencart/issues/2580)
- Stock subtracting not working [\#2579](https://github.com/opencart/opencart/issues/2579)
- Coupon code bug! [\#2578](https://github.com/opencart/opencart/issues/2578)
- Column size change of logo and search through header.tpl [\#2577](https://github.com/opencart/opencart/issues/2577)
- Order Status Update Emails [\#2576](https://github.com/opencart/opencart/issues/2576)
- 'append' key for order history issue/irrelevant? [\#2575](https://github.com/opencart/opencart/issues/2575)
- My Account Changes [\#2574](https://github.com/opencart/opencart/issues/2574)
- Checkout - Address [\#2573](https://github.com/opencart/opencart/issues/2573)
- Error when changing the Order Status [\#2572](https://github.com/opencart/opencart/issues/2572)
- Notice in \admin\controller\tool\backup.php on line 13 [\#2571](https://github.com/opencart/opencart/issues/2571)
- Side menu issue [\#2570](https://github.com/opencart/opencart/issues/2570)
- Error when logging in as a user [\#2569](https://github.com/opencart/opencart/issues/2569)
- Email Spam [\#2568](https://github.com/opencart/opencart/issues/2568)
- Edit Order [\#2567](https://github.com/opencart/opencart/issues/2567)
- Updating order history bug or error :\( [\#2565](https://github.com/opencart/opencart/issues/2565)
- Missing tpl file in admin \(common/buttons.tpl\) [\#2564](https://github.com/opencart/opencart/issues/2564)
- 2.x catalog/model/checkout/recurring.php-\>create\(\) expects 1.5.x keys [\#2562](https://github.com/opencart/opencart/issues/2562)
- \(ocmod\) Path cannot start with brace e.g. {admin,catalog}/ not allowed [\#2561](https://github.com/opencart/opencart/issues/2561)
- cant use multi xml file in ocmod \(xml over 64kb error\) [\#2559](https://github.com/opencart/opencart/issues/2559)
- Sales Report Product Count [\#2556](https://github.com/opencart/opencart/issues/2556)
- Compare doeas not cross original price when special price available [\#2555](https://github.com/opencart/opencart/issues/2555)
- Customer report model [\#2554](https://github.com/opencart/opencart/issues/2554)
- Login attempts [\#2552](https://github.com/opencart/opencart/issues/2552)
- I am getting error when i am creating clone of carousel module [\#2551](https://github.com/opencart/opencart/issues/2551)
- Unknown: Object of class Language could not be converted to string [\#2550](https://github.com/opencart/opencart/issues/2550)
- Issues with Opencast Dashboard Please Help! [\#2549](https://github.com/opencart/opencart/issues/2549)
- Highly inaccurate Fedex rate quotes being generated - \(1.x\) [\#2547](https://github.com/opencart/opencart/issues/2547)
- Add History: email notification is sent regardless of Notify checkbox value [\#2546](https://github.com/opencart/opencart/issues/2546)
- common.js popover \(solution\) [\#2544](https://github.com/opencart/opencart/issues/2544)
- Wrong font family in breadcrumb \(home\) [\#2543](https://github.com/opencart/opencart/issues/2543)
- Product Feed not working [\#2542](https://github.com/opencart/opencart/issues/2542)
- 2.0.1.1 https [\#2539](https://github.com/opencart/opencart/issues/2539)
- Image Manager Search Issue - Opencart 2.0.1.1 [\#2538](https://github.com/opencart/opencart/issues/2538)
- add/edit order from admin \> Sales \> Orders not working [\#2537](https://github.com/opencart/opencart/issues/2537)
- no review sent confirmation message [\#2536](https://github.com/opencart/opencart/issues/2536)
- css for slider still small 20px issue after applying fix [\#2535](https://github.com/opencart/opencart/issues/2535)
- Amazon payments not working [\#2534](https://github.com/opencart/opencart/issues/2534)
- Missing array\(\) [\#2533](https://github.com/opencart/opencart/issues/2533)
- Fedex admin typos [\#2532](https://github.com/opencart/opencart/issues/2532)
- Product order - stock calculation after shipment [\#2530](https://github.com/opencart/opencart/issues/2530)
- SyntaxError on adding order history/click Continue in the order [\#2529](https://github.com/opencart/opencart/issues/2529)
- Product order - stock calculation [\#2528](https://github.com/opencart/opencart/issues/2528)
- Upgrade Error: 1.5.6 to 2.0.1.1 [\#2526](https://github.com/opencart/opencart/issues/2526)
- Notice in /admin/controller/common/header.php [\#2525](https://github.com/opencart/opencart/issues/2525)
- upgrade success page has broken images [\#2524](https://github.com/opencart/opencart/issues/2524)
- after upgrading my store settings are empty for non default stores [\#2523](https://github.com/opencart/opencart/issues/2523)
- upgrade.txt has references to oc 1.5.x stores instead of 2.x [\#2522](https://github.com/opencart/opencart/issues/2522)
- Summernote bold bug [\#2521](https://github.com/opencart/opencart/issues/2521)
- bug fixing help [\#2520](https://github.com/opencart/opencart/issues/2520)
- Review Cannot be posted 2.0.0.0 [\#2519](https://github.com/opencart/opencart/issues/2519)
- Modification List [\#2518](https://github.com/opencart/opencart/issues/2518)
- Header shopping cart [\#2517](https://github.com/opencart/opencart/issues/2517)
- Category, filter limit when adding new product [\#2516](https://github.com/opencart/opencart/issues/2516)
- Uploading images issue [\#2513](https://github.com/opencart/opencart/issues/2513)
- Parent not updated for Category [\#2512](https://github.com/opencart/opencart/issues/2512)
- OC 2.x Paypal standard checkout error [\#2511](https://github.com/opencart/opencart/issues/2511)
- Successful registration contact us link incorrect [\#2510](https://github.com/opencart/opencart/issues/2510)
- broken image link in product description section [\#2509](https://github.com/opencart/opencart/issues/2509)
- Delete product images during deleting product. [\#2508](https://github.com/opencart/opencart/issues/2508)
- Currency won't change [\#2506](https://github.com/opencart/opencart/issues/2506)
- USPS Stamped Letter [\#2505](https://github.com/opencart/opencart/issues/2505)
- Admin issue [\#2504](https://github.com/opencart/opencart/issues/2504)
- Settings - Comments [\#2503](https://github.com/opencart/opencart/issues/2503)
- dont load manuel added orders on clean install 2.0.1.1 [\#2502](https://github.com/opencart/opencart/issues/2502)
- 404 Error in store when Use SEO URLs in the store settings [\#2500](https://github.com/opencart/opencart/issues/2500)