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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
|
# 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)
- oc2 modules are not display properly on category page [\#2499](https://github.com/opencart/opencart/issues/2499)
- $setting return an empty string [\#2497](https://github.com/opencart/opencart/issues/2497)
- Multistore - Settings - Opening Times and Comments [\#2496](https://github.com/opencart/opencart/issues/2496)
- Summernote paragraphs [\#2494](https://github.com/opencart/opencart/issues/2494)
- Search by tags [\#2493](https://github.com/opencart/opencart/issues/2493)
- More filters goods Admin [\#2492](https://github.com/opencart/opencart/issues/2492)
- Set alignment prices in Admin product\_list [\#2491](https://github.com/opencart/opencart/issues/2491)
- Error display discharges in Admin [\#2490](https://github.com/opencart/opencart/issues/2490)
- Currency settings - Issue or feature? [\#2488](https://github.com/opencart/opencart/issues/2488)
- Multishop - Contact us - Our Location [\#2487](https://github.com/opencart/opencart/issues/2487)
- wiki/Modification-System inconsistencies [\#2486](https://github.com/opencart/opencart/issues/2486)
- I'mg getting missing orders on opencart Version 1.5.6.4 [\#2485](https://github.com/opencart/opencart/issues/2485)
- Image manager in admin panel is not open [\#2480](https://github.com/opencart/opencart/issues/2480)
- .list-group a style should be looked at deleting [\#2479](https://github.com/opencart/opencart/issues/2479)
- Multiple stores route issues. [\#2478](https://github.com/opencart/opencart/issues/2478)
- error on top [\#2477](https://github.com/opencart/opencart/issues/2477)
- API Issue when trying to read cookies [\#2476](https://github.com/opencart/opencart/issues/2476)
- Authorize.net AIM module not submitting product information [\#2475](https://github.com/opencart/opencart/issues/2475)
- Registration postcode issue with Firefox [\#2474](https://github.com/opencart/opencart/issues/2474)
- add category BUG. [\#2473](https://github.com/opencart/opencart/issues/2473)
- summernote doesnot format the text if there is \<strong\> tag inside [\#2467](https://github.com/opencart/opencart/issues/2467)
- Recurring profile gets deleted from the list after applying \*Copy\*. 2.0.1.1. [\#2466](https://github.com/opencart/opencart/issues/2466)
- Update is not working with mysqli and is not translated [\#2465](https://github.com/opencart/opencart/issues/2465)
- Notice: Error: Could not load language default! in language.php line 39 [\#2464](https://github.com/opencart/opencart/issues/2464)
- Problem with icons not displaying in google chrome [\#2463](https://github.com/opencart/opencart/issues/2463)
- Payment Module: PP Express does not save a logo [\#2462](https://github.com/opencart/opencart/issues/2462)
- "I wish to subscribe to the %s newsletter" [\#2461](https://github.com/opencart/opencart/issues/2461)
- Still unable to copy a Recurring Profile [\#2460](https://github.com/opencart/opencart/issues/2460)
- Auto complete is broken on common.js [\#2459](https://github.com/opencart/opencart/issues/2459)
- Unable to copy a Recurring Profile [\#2458](https://github.com/opencart/opencart/issues/2458)
- JSON error in order's history [\#2457](https://github.com/opencart/opencart/issues/2457)
- Opencart 2.x in Internet Explorer [\#2455](https://github.com/opencart/opencart/issues/2455)
- ZIP Extension While Installing [\#2454](https://github.com/opencart/opencart/issues/2454)
- Does not change the Number of Items to Cart [\#2452](https://github.com/opencart/opencart/issues/2452)
- After upload ocMod, btn Continue not working. [\#2451](https://github.com/opencart/opencart/issues/2451)
- Admin is compiling LESS in production downloads [\#2447](https://github.com/opencart/opencart/issues/2447)
- Royal Mail Shipping Module Services incorrect [\#2020](https://github.com/opencart/opencart/issues/2020)
**Merged pull requests:**
- Update OpenBay Pro to v2813 [\#2829](https://github.com/opencart/opencart/pull/2829) ([jamesallsup](https://github.com/jamesallsup))
- Globalpay/Realex ECI message changes [\#2821](https://github.com/opencart/opencart/pull/2821) ([davidteal](https://github.com/davidteal))
- Globalpay/Realex fixes [\#2810](https://github.com/opencart/opencart/pull/2810) ([davidteal](https://github.com/davidteal))
- Amazon - warning class to alert class [\#2806](https://github.com/opencart/opencart/pull/2806) ([chris-wm](https://github.com/chris-wm))
- Hotfix/amazon large update [\#2805](https://github.com/opencart/opencart/pull/2805) ([chris-wm](https://github.com/chris-wm))
- OpenBay Pro update to latest stable v2794 [\#2785](https://github.com/opencart/opencart/pull/2785) ([jamesallsup](https://github.com/jamesallsup))
- Hotfix/amazon large update [\#2783](https://github.com/opencart/opencart/pull/2783) ([chris-wm](https://github.com/chris-wm))
- Hotfix/amazon large update [\#2782](https://github.com/opencart/opencart/pull/2782) ([chris-wm](https://github.com/chris-wm))
- Hotfix/amazon large update [\#2781](https://github.com/opencart/opencart/pull/2781) ([chris-wm](https://github.com/chris-wm))
- Hotfix/amazon large update [\#2777](https://github.com/opencart/opencart/pull/2777) ([chris-wm](https://github.com/chris-wm))
- fix cart quantity input width on mobile [\#2773](https://github.com/opencart/opencart/pull/2773) ([veksen](https://github.com/veksen))
- - updating event methods from tool/event to extension/event [\#2767](https://github.com/opencart/opencart/pull/2767) ([chris-wm](https://github.com/chris-wm))
- Feature/paypal onboarding [\#2762](https://github.com/opencart/opencart/pull/2762) ([chris-wm](https://github.com/chris-wm))
- In the callback method there is a bug when Paypal is the chosen card typ... [\#2761](https://github.com/opencart/opencart/pull/2761) ([chris-wm](https://github.com/chris-wm))
- Recurring orders are stored in the cart on their own array level e.g. \['... [\#2760](https://github.com/opencart/opencart/pull/2760) ([chris-wm](https://github.com/chris-wm))
- Adding customerfirstname and customerlastname to the payment form as req... [\#2759](https://github.com/opencart/opencart/pull/2759) ([chris-wm](https://github.com/chris-wm))
- removing debug code in the cron job method [\#2758](https://github.com/opencart/opencart/pull/2758) ([chris-wm](https://github.com/chris-wm))
- Feature/amazon [\#2757](https://github.com/opencart/opencart/pull/2757) ([chris-wm](https://github.com/chris-wm))
- Feature/worldpay [\#2755](https://github.com/opencart/opencart/pull/2755) ([chris-wm](https://github.com/chris-wm))
- clear review buttons [\#2753](https://github.com/opencart/opencart/pull/2753) ([veksen](https://github.com/veksen))
- Update securetrading\_ws.php [\#2747](https://github.com/opencart/opencart/pull/2747) ([osworx](https://github.com/osworx))
- Update securetrading\_pp.php [\#2746](https://github.com/opencart/opencart/pull/2746) ([osworx](https://github.com/osworx))
- Adding Globalpayments [\#2738](https://github.com/opencart/opencart/pull/2738) ([davidteal](https://github.com/davidteal))
- fix trailing whitespace in catalog template [\#2737](https://github.com/opencart/opencart/pull/2737) ([veksen](https://github.com/veksen))
- Fix event bug in manufacturer.php [\#2732](https://github.com/opencart/opencart/pull/2732) ([haydenw](https://github.com/haydenw))
- Sort modules by name [\#2730](https://github.com/opencart/opencart/pull/2730) ([sabitertan](https://github.com/sabitertan))
- Fixed a bug when product layouts were used in left and right columns. [\#2728](https://github.com/opencart/opencart/pull/2728) ([JamesAtkinson](https://github.com/JamesAtkinson))
- Fixes line endings in several files \(CRLF are now LF\) [\#2706](https://github.com/opencart/opencart/pull/2706) ([schrodervictor](https://github.com/schrodervictor))
- Admin Tweak - Reverse Default Order of Reviews [\#2702](https://github.com/opencart/opencart/pull/2702) ([OC2PS-2](https://github.com/OC2PS-2))
- Fix default value of error\_address [\#2701](https://github.com/opencart/opencart/pull/2701) ([CZechBoY](https://github.com/CZechBoY))
- Add HTTPS support during installation [\#2682](https://github.com/opencart/opencart/pull/2682) ([redochka](https://github.com/redochka))
- redundant product\_attribute queries [\#2676](https://github.com/opencart/opencart/pull/2676) ([pine3ree](https://github.com/pine3ree))
- store product\_reward entries only when points \> 0 [\#2674](https://github.com/opencart/opencart/pull/2674) ([pine3ree](https://github.com/pine3ree))
- Typo in filling addresses after login [\#2672](https://github.com/opencart/opencart/pull/2672) ([acidclick](https://github.com/acidclick))
- $data\['tax\_class\_id'\] integer casting [\#2671](https://github.com/opencart/opencart/pull/2671) ([pine3ree](https://github.com/pine3ree))
- Update order\_info.tpl [\#2661](https://github.com/opencart/opencart/pull/2661) ([dragoncorpgit](https://github.com/dragoncorpgit))
- Update stylesheet.css [\#2644](https://github.com/opencart/opencart/pull/2644) ([saifwebberoo](https://github.com/saifwebberoo))
- Disable maintenance check for API requests [\#2606](https://github.com/opencart/opencart/pull/2606) ([JAY6390](https://github.com/JAY6390))
- Add basename in backup filename [\#2507](https://github.com/opencart/opencart/pull/2507) ([Rubens2014](https://github.com/Rubens2014))
- get HTTP\_ACCEPT\_LANGUAGE when necessary [\#2498](https://github.com/opencart/opencart/pull/2498) ([anrip](https://github.com/anrip))
- stray closing form tag [\#2495](https://github.com/opencart/opencart/pull/2495) ([Equotix](https://github.com/Equotix))
- Incorrect argument passed [\#2468](https://github.com/opencart/opencart/pull/2468) ([opencarthelp](https://github.com/opencarthelp))
- I think that "Show All" is Better than "See All" [\#2456](https://github.com/opencart/opencart/pull/2456) ([Dvir-Julius](https://github.com/Dvir-Julius))
## [2.0.1.1](https://github.com/opencart/opencart/tree/2.0.1.1) (2014-12-06)
[Full Changelog](https://github.com/opencart/opencart/compare/2.0.1.0...2.0.1.1)
**Closed issues:**
- Latest Module - Showing Twice \(image\) [\#2450](https://github.com/opencart/opencart/issues/2450)
- SQL-backup file name [\#2449](https://github.com/opencart/opencart/issues/2449)
- Error after update from 2.0.0.1 to 2.0.1.0 [\#2448](https://github.com/opencart/opencart/issues/2448)
- Specials not showing in admin panel [\#2445](https://github.com/opencart/opencart/issues/2445)
- v2.0.1.0 breaks every single previously installed module.... [\#2444](https://github.com/opencart/opencart/issues/2444)
- Problem with Refresh on Modifications-Tab [\#2443](https://github.com/opencart/opencart/issues/2443)
- order history update sytax error [\#2441](https://github.com/opencart/opencart/issues/2441)
- 2369 [\#2440](https://github.com/opencart/opencart/issues/2440)
- Module Featured is not working at version 2.0.1.0 [\#2438](https://github.com/opencart/opencart/issues/2438)
- New options not appearing when adding products [\#2437](https://github.com/opencart/opencart/issues/2437)
- ocMod bug: ignoreif tag [\#2436](https://github.com/opencart/opencart/issues/2436)
- Recurring Profiles Checkout Step \#6 Errors [\#2435](https://github.com/opencart/opencart/issues/2435)
- Deleting item from cart problem [\#2433](https://github.com/opencart/opencart/issues/2433)
- Registering a new account problem [\#2432](https://github.com/opencart/opencart/issues/2432)
- Slideshow Not Displaying [\#2431](https://github.com/opencart/opencart/issues/2431)
- PP Button Does Not Save Enabled State [\#2430](https://github.com/opencart/opencart/issues/2430)
- Module menu department - Problem at moment set avaiable [\#2427](https://github.com/opencart/opencart/issues/2427)
- Add modification dir to install check [\#2426](https://github.com/opencart/opencart/issues/2426)
- OCmod bug [\#2424](https://github.com/opencart/opencart/issues/2424)
- Affiliates account issue [\#2422](https://github.com/opencart/opencart/issues/2422)
- 2.0.1.0 undefined variable textyes [\#2420](https://github.com/opencart/opencart/issues/2420)
- Another load of shite in latest release [\#2417](https://github.com/opencart/opencart/issues/2417)
- When I Upload a ocmod.xml file using extension installer and do refresh in modification it not working [\#2416](https://github.com/opencart/opencart/issues/2416)
- issue \#2291 --\> still getting the error in\_array\(\) expects parameter 2 to be array, ecc.... [\#2413](https://github.com/opencart/opencart/issues/2413)
- Custom field for file uploading not working [\#2412](https://github.com/opencart/opencart/issues/2412)
- Information module status not saved [\#2409](https://github.com/opencart/opencart/issues/2409)
- Bonus point system and voucher system [\#2408](https://github.com/opencart/opencart/issues/2408)
- Modules\>Bestsellers and Modules\>Latest [\#2407](https://github.com/opencart/opencart/issues/2407)
- Latest Module [\#2406](https://github.com/opencart/opencart/issues/2406)
- I can not edit order by admin [\#2405](https://github.com/opencart/opencart/issues/2405)
- opencart 2.0.0.0 template issue [\#2403](https://github.com/opencart/opencart/issues/2403)
- Coupon Code Error Internet Explorer [\#2401](https://github.com/opencart/opencart/issues/2401)
- Admin and User experience issues [\#2399](https://github.com/opencart/opencart/issues/2399)
- Urgent - Cannot add items to cart in latest iPhone 6 - Safari - iOS 8.1.1 - OpenCart 2.0 [\#2398](https://github.com/opencart/opencart/issues/2398)
- CSS small issue [\#2397](https://github.com/opencart/opencart/issues/2397)
- MSSQL driver named mmsql.php [\#2396](https://github.com/opencart/opencart/issues/2396)
- \[CRITICAL\] Cart total shows empty after adding the product on IOS 8.1.1 Safari [\#2393](https://github.com/opencart/opencart/issues/2393)
- admin - header.tpl, several issues [\#2392](https://github.com/opencart/opencart/issues/2392)
- Warning: in\_array\(\) in /catalog/view/theme/default/template/checkout/guest.tpl and others [\#2391](https://github.com/opencart/opencart/issues/2391)
- Required custom input field for file uploading not working in theme/default/template/checkout/guest.tpl [\#2390](https://github.com/opencart/opencart/issues/2390)
- Alert message \(twice\) on dashboard in admin [\#2389](https://github.com/opencart/opencart/issues/2389)
- PayPal Login [\#2383](https://github.com/opencart/opencart/issues/2383)
**Merged pull requests:**
- Fix cart when screen resolution is less than 478px [\#2446](https://github.com/opencart/opencart/pull/2446) ([Dvir-Julius](https://github.com/Dvir-Julius))
- Fix uninstall module - layout\_module issue. [\#2442](https://github.com/opencart/opencart/pull/2442) ([ocextensions](https://github.com/ocextensions))
- Fix javascript error on Autocomplete [\#2429](https://github.com/opencart/opencart/pull/2429) ([ocextensions](https://github.com/ocextensions))
- Rename mssql driver file [\#2428](https://github.com/opencart/opencart/pull/2428) ([threesquared](https://github.com/threesquared))
- Fix variable text\_yes in customer edit form [\#2421](https://github.com/opencart/opencart/pull/2421) ([gortsilas](https://github.com/gortsilas))
- Fix owl-carousel for RTL useres. [\#2419](https://github.com/opencart/opencart/pull/2419) ([Dvir-Julius](https://github.com/Dvir-Julius))
- Update filter.php [\#2418](https://github.com/opencart/opencart/pull/2418) ([jorritd](https://github.com/jorritd))
- Prevent plotting of the chart in case there is no data [\#2415](https://github.com/opencart/opencart/pull/2415) ([gortsilas](https://github.com/gortsilas))
- Fixed allignment of Currency drop down menu \#2397 [\#2411](https://github.com/opencart/opencart/pull/2411) ([gortsilas](https://github.com/gortsilas))
- Update banner.tpl [\#2402](https://github.com/opencart/opencart/pull/2402) ([CoverUp](https://github.com/CoverUp))
- Fix for ftp\_mkdir error during extension installation OCMOD [\#2400](https://github.com/opencart/opencart/pull/2400) ([gortsilas](https://github.com/gortsilas))
- Update slideshow.php [\#2394](https://github.com/opencart/opencart/pull/2394) ([opencart-russia](https://github.com/opencart-russia))
- Remove language string duplicated [\#2387](https://github.com/opencart/opencart/pull/2387) ([ManoelVidal](https://github.com/ManoelVidal))
- Remove language string duplicated [\#2386](https://github.com/opencart/opencart/pull/2386) ([ManoelVidal](https://github.com/ManoelVidal))
## [2.0.1.0](https://github.com/opencart/opencart/tree/2.0.1.0) (2014-11-30)
[Full Changelog](https://github.com/opencart/opencart/compare/2.0.0.0...2.0.1.0)
**Closed issues:**
- Installation fails [\#2385](https://github.com/opencart/opencart/issues/2385)
- SEO URL - Categories [\#2384](https://github.com/opencart/opencart/issues/2384)
- Multilanguage slideshow [\#2382](https://github.com/opencart/opencart/issues/2382)
- \<Confirm Order\> button does not function [\#2380](https://github.com/opencart/opencart/issues/2380)
- Warning Message - Always displayed on all pages [\#2379](https://github.com/opencart/opencart/issues/2379)
- Subtract stock on CHECKOUT and on Delete Order from - Admin/Sales/Orders/ - Problem [\#2377](https://github.com/opencart/opencart/issues/2377)
- Small issue Undefined variable: code [\#2375](https://github.com/opencart/opencart/issues/2375)
- Edit order product increment [\#2372](https://github.com/opencart/opencart/issues/2372)
- crash during checkout [\#2364](https://github.com/opencart/opencart/issues/2364)
- installer doesnt use defined paths [\#2363](https://github.com/opencart/opencart/issues/2363)
- version 2.0 [\#2362](https://github.com/opencart/opencart/issues/2362)
- SyntaxError: Unexpected end of input [\#2361](https://github.com/opencart/opencart/issues/2361)
- Notice: Undefined variable: text\_edit in setting.tpl on line 29 in Open cart 2.0.0.0 [\#2359](https://github.com/opencart/opencart/issues/2359)
- Wrong data on cart update for OC 2.0 [\#2354](https://github.com/opencart/opencart/issues/2354)
- Admin ControllerExtensionPayment-\>getList\(\) Breadcrumbs [\#2352](https://github.com/opencart/opencart/issues/2352)
- missing image file [\#2351](https://github.com/opencart/opencart/issues/2351)
- Rewards applied multiple times when changing order status [\#2349](https://github.com/opencart/opencart/issues/2349)
- $\_\['button\_example'\],$\_\['tab\_example'\] will remain in default language in master-branch [\#2348](https://github.com/opencart/opencart/issues/2348)
- Post installation ver. 2.0.0.1b issue [\#2346](https://github.com/opencart/opencart/issues/2346)
- New classes autoloader [\#2345](https://github.com/opencart/opencart/issues/2345)
- ControllerExtensionInstaller-\>clear\(\) fails on dot-files \(eg: .gitignore\) [\#2344](https://github.com/opencart/opencart/issues/2344)
- Setting's Mail Pass Word [\#2343](https://github.com/opencart/opencart/issues/2343)
- No download limit in catalog/controller/account/downloads.php [\#2342](https://github.com/opencart/opencart/issues/2342)
- Wrong option label in DB Driver dropdown list [\#2340](https://github.com/opencart/opencart/issues/2340)
- MySQLi installation error [\#2339](https://github.com/opencart/opencart/issues/2339)
- undefined variable $group in admin/mode/setting/setting [\#2335](https://github.com/opencart/opencart/issues/2335)
- Undefined banner\_id [\#2334](https://github.com/opencart/opencart/issues/2334)
- Undefined variable: text\_edit in admin/view/template/setting/setting.tpl on line 29 [\#2333](https://github.com/opencart/opencart/issues/2333)
- Missing In view/theme/default/template/account.tpl custom field display [\#2332](https://github.com/opencart/opencart/issues/2332)
- Admin Category list displays wrong sort order [\#2329](https://github.com/opencart/opencart/issues/2329)
- Spelling error controler -\> checkout -\> guest [\#2328](https://github.com/opencart/opencart/issues/2328)
- Carousel not works [\#2327](https://github.com/opencart/opencart/issues/2327)
- required custom field validation return always false in account/edit [\#2326](https://github.com/opencart/opencart/issues/2326)
- Parent only show 5 categories [\#2325](https://github.com/opencart/opencart/issues/2325)
- Error during checkout [\#2324](https://github.com/opencart/opencart/issues/2324)
- Unexpected end of input while changing order status [\#2323](https://github.com/opencart/opencart/issues/2323)
- still getting errors for checkboxes ---\> issue 2305 [\#2319](https://github.com/opencart/opencart/issues/2319)
- ajax remove all classes if file upload is successfully in register.tpl, ecc... [\#2318](https://github.com/opencart/opencart/issues/2318)
- Using pay with rewards points in Cart [\#2316](https://github.com/opencart/opencart/issues/2316)
- Module HTML Content [\#2315](https://github.com/opencart/opencart/issues/2315)
- Rewrite url error [\#2314](https://github.com/opencart/opencart/issues/2314)
- PayPal Express Checkout Button Module [\#2313](https://github.com/opencart/opencart/issues/2313)
- PayPal Login No Longer Working [\#2311](https://github.com/opencart/opencart/issues/2311)
- free\_checkout not activated when coupon makes cart total = $0 [\#2310](https://github.com/opencart/opencart/issues/2310)
- Downloads manager broken [\#2309](https://github.com/opencart/opencart/issues/2309)
- empty space in carousel manufacturers [\#2307](https://github.com/opencart/opencart/issues/2307)
- bestsellers currency use USD only shows number in USD symbol in other currency [\#2306](https://github.com/opencart/opencart/issues/2306)
- issue \#2300 \(not keeping values in register.tpl\) -\> still not working for checkboxes and file uploading [\#2305](https://github.com/opencart/opencart/issues/2305)
- paypal changes 3rd december [\#2304](https://github.com/opencart/opencart/issues/2304)
- custom select, radio, etc...will not keep the value [\#2300](https://github.com/opencart/opencart/issues/2300)
- Sales\>Order Action Loads forever [\#2299](https://github.com/opencart/opencart/issues/2299)
- Small Typos [\#2298](https://github.com/opencart/opencart/issues/2298)
- Featured and latest modules left and right display issue [\#2297](https://github.com/opencart/opencart/issues/2297)
- $mail-\>send\(\) in voucher model [\#2295](https://github.com/opencart/opencart/issues/2295)
- Marketing email: Message required! [\#2294](https://github.com/opencart/opencart/issues/2294)
- Error access admin module [\#2293](https://github.com/opencart/opencart/issues/2293)
- Log In with PayPal [\#2292](https://github.com/opencart/opencart/issues/2292)
- Image Manager Freezes [\#2291](https://github.com/opencart/opencart/issues/2291)
- Undefined index on line 281 in catalog/controller/account/register.php [\#2290](https://github.com/opencart/opencart/issues/2290)
- Gift Vouchers Do Not Work [\#2289](https://github.com/opencart/opencart/issues/2289)
- invalid argument foreach\(\) [\#2286](https://github.com/opencart/opencart/issues/2286)
- Filter does not work [\#2285](https://github.com/opencart/opencart/issues/2285)
- SyntaxError: Unexpected end of input [\#2284](https://github.com/opencart/opencart/issues/2284)
- Warning code just after installing Opencart [\#2283](https://github.com/opencart/opencart/issues/2283)
- Deleting Item from Cart [\#2281](https://github.com/opencart/opencart/issues/2281)
- Region / State required, even if there is none \(Affiliate\) [\#2280](https://github.com/opencart/opencart/issues/2280)
- Notice: Undefined index: banner\_id in /catalog/controller/module/slideshow.php on line 14 [\#2279](https://github.com/opencart/opencart/issues/2279)
- Internal Server error OCv2 [\#2277](https://github.com/opencart/opencart/issues/2277)
- OpenCart 2.0.0.0 not showing Paypal Express button [\#2276](https://github.com/opencart/opencart/issues/2276)
- image manager bug [\#2275](https://github.com/opencart/opencart/issues/2275)
- featured.php on line 24 & 26 problem [\#2274](https://github.com/opencart/opencart/issues/2274)
- Wishlist template [\#2273](https://github.com/opencart/opencart/issues/2273)
- PayPal Express Button Not Displaying [\#2272](https://github.com/opencart/opencart/issues/2272)
- Manufacturer Description over-riding Product Description [\#2271](https://github.com/opencart/opencart/issues/2271)
- OCMOD Module code exist error [\#2270](https://github.com/opencart/opencart/issues/2270)
- FedEx shipping module issues [\#2269](https://github.com/opencart/opencart/issues/2269)
- When i am trying to change the logo, the button hover tooptips are not closing [\#2267](https://github.com/opencart/opencart/issues/2267)
- "Special" module [\#2266](https://github.com/opencart/opencart/issues/2266)
- After installization, i'm getting the error on home page. [\#2265](https://github.com/opencart/opencart/issues/2265)
- Customers not approved when manually entered [\#2264](https://github.com/opencart/opencart/issues/2264)
- Add Live chat box in verson 2.0.0 [\#2263](https://github.com/opencart/opencart/issues/2263)
- File Manager embeds HTTP link in product description, even if SSL is enabled [\#2262](https://github.com/opencart/opencart/issues/2262)
- Featured module [\#2261](https://github.com/opencart/opencart/issues/2261)
- Switching to SSL results in blocked content [\#2260](https://github.com/opencart/opencart/issues/2260)
- Renaming admin folder makes it inaccessible [\#2259](https://github.com/opencart/opencart/issues/2259)
- Countries with no Zones Fail [\#2258](https://github.com/opencart/opencart/issues/2258)
- SEO friendly URLs not working for catalog information pages [\#2257](https://github.com/opencart/opencart/issues/2257)
- what is this error mean after first install 2.0 from github ? [\#2256](https://github.com/opencart/opencart/issues/2256)
- \[del\] [\#2255](https://github.com/opencart/opencart/issues/2255)
- Featured Module [\#2254](https://github.com/opencart/opencart/issues/2254)
- Shipping and taxes on cart page [\#2252](https://github.com/opencart/opencart/issues/2252)
- Syntax Error when adding order history [\#2251](https://github.com/opencart/opencart/issues/2251)
- BUG Undefined variable: text\_edit [\#2250](https://github.com/opencart/opencart/issues/2250)
- Test Checkout Error [\#2248](https://github.com/opencart/opencart/issues/2248)
- Marketing Report [\#2247](https://github.com/opencart/opencart/issues/2247)
- Error registering a new store [\#2246](https://github.com/opencart/opencart/issues/2246)
- Reopening of "'replace' operation of ocmod does not work as expected" issue [\#2245](https://github.com/opencart/opencart/issues/2245)
- Error: Could not load database driver ! [\#2243](https://github.com/opencart/opencart/issues/2243)
- OC 2, Wrong MYsql Table References in Recurring [\#2242](https://github.com/opencart/opencart/issues/2242)
- futured products [\#2240](https://github.com/opencart/opencart/issues/2240)
- OCmod still has the same old bugs [\#2239](https://github.com/opencart/opencart/issues/2239)
- Order Status not working [\#2238](https://github.com/opencart/opencart/issues/2238)
- Stock does not return after you delete from Sales-\>Orders [\#2237](https://github.com/opencart/opencart/issues/2237)
- 'replace' operation of ocmod does not work as expected [\#2236](https://github.com/opencart/opencart/issues/2236)
- There is no way to strict right for installing module [\#2235](https://github.com/opencart/opencart/issues/2235)
- \<b\>Fatal error\</b\>: Cannot use string offset as an array in \<b\>/admin/view/template/sale/customer\_form.tpl on line 489 [\#2234](https://github.com/opencart/opencart/issues/2234)
- People Online Gadget Not Working [\#2233](https://github.com/opencart/opencart/issues/2233)
- Modification Installer \> Compare catalog files [\#2232](https://github.com/opencart/opencart/issues/2232)
- script tag after $footer in default template product/search.tpl [\#2227](https://github.com/opencart/opencart/issues/2227)
- about seo keyword explode " - " [\#2224](https://github.com/opencart/opencart/issues/2224)
- seo keyword use isue [\#2223](https://github.com/opencart/opencart/issues/2223)
- Error occurs while installing facebook like box extension [\#2222](https://github.com/opencart/opencart/issues/2222)
- Cant upload the file with extension installer [\#2221](https://github.com/opencart/opencart/issues/2221)
- Featured Module Shows Error at Frontend Side in OpenCart 2.0.0.0 [\#2220](https://github.com/opencart/opencart/issues/2220)
- Image Manager does not load the images [\#2218](https://github.com/opencart/opencart/issues/2218)
- /admin/view/template/sale/customer\_form.tpl \> throws errors [\#2217](https://github.com/opencart/opencart/issues/2217)
- pp\_express problem with product prices over 1000 [\#2216](https://github.com/opencart/opencart/issues/2216)
- In Opencart 2.0 OCMod, modified file is not used for view [\#2215](https://github.com/opencart/opencart/issues/2215)
- Event action names are inconsistent [\#2214](https://github.com/opencart/opencart/issues/2214)
- Blank page for Edit module in admin pannel after hosting [\#2213](https://github.com/opencart/opencart/issues/2213)
- Bug in installing the specials module [\#2212](https://github.com/opencart/opencart/issues/2212)
- OC 2.0.0.0 'mail message required' [\#2211](https://github.com/opencart/opencart/issues/2211)
- Invalid file type [\#2210](https://github.com/opencart/opencart/issues/2210)
- Notice: undefined variable button\_continue in /special.tpl [\#2209](https://github.com/opencart/opencart/issues/2209)
- customer\_list.tpl error [\#2208](https://github.com/opencart/opencart/issues/2208)
- admin/view/template/setting/setting.tpl issue [\#2206](https://github.com/opencart/opencart/issues/2206)
- Emails not working in Opencart 2.0 [\#2205](https://github.com/opencart/opencart/issues/2205)
- customer\_list.tpl error [\#2204](https://github.com/opencart/opencart/issues/2204)
- SyntaxError: JSON.parse: unexpected end of data at line 1 column 1 of the JSON data OK [\#2203](https://github.com/opencart/opencart/issues/2203)
- Content Encoding Error [\#2201](https://github.com/opencart/opencart/issues/2201)
- Please sort out OCmod [\#2200](https://github.com/opencart/opencart/issues/2200)
- Contact form does not send mail [\#2198](https://github.com/opencart/opencart/issues/2198)
- coding standards for same values? [\#2197](https://github.com/opencart/opencart/issues/2197)
- Unnameable error [\#2193](https://github.com/opencart/opencart/issues/2193)
- catalog ModelAccountCustomField - function getCustomFieldValue [\#2192](https://github.com/opencart/opencart/issues/2192)
- Error - Sales \> Customers [\#2187](https://github.com/opencart/opencart/issues/2187)
- duplicate sql querys on home page. [\#2186](https://github.com/opencart/opencart/issues/2186)
- customer transaction [\#2185](https://github.com/opencart/opencart/issues/2185)
- Email Sending Error Dashboard [\#2182](https://github.com/opencart/opencart/issues/2182)
- catalog ControllerProductCategory - function index\(\) [\#2181](https://github.com/opencart/opencart/issues/2181)
- admin class ModelOpenbayAmazonPatch - public function runPatch | low priority [\#2177](https://github.com/opencart/opencart/issues/2177)
- admin class ModelSaleVoucher - public function addVoucherHistory [\#2176](https://github.com/opencart/opencart/issues/2176)
- Unable To change setting [\#2174](https://github.com/opencart/opencart/issues/2174)
- New bug in 2.0.0.1b [\#2172](https://github.com/opencart/opencart/issues/2172)
- Removal order in maintenance mode [\#2171](https://github.com/opencart/opencart/issues/2171)
- Orders - undefined constant https\_catalog OPENCART 2.0 [\#2170](https://github.com/opencart/opencart/issues/2170)
- Extension Installer [\#2165](https://github.com/opencart/opencart/issues/2165)
- OC2.0.0.1b: Bug in modification system [\#2157](https://github.com/opencart/opencart/issues/2157)
- custom fields status [\#2155](https://github.com/opencart/opencart/issues/2155)
- JSON End of Input error during checkout [\#2154](https://github.com/opencart/opencart/issues/2154)
- google chrome slide issue [\#2152](https://github.com/opencart/opencart/issues/2152)
- Bank Transfer payment module in admin doesnt show errors [\#2150](https://github.com/opencart/opencart/issues/2150)
- admin product form table cell width [\#2149](https://github.com/opencart/opencart/issues/2149)
- Change misleading text [\#2148](https://github.com/opencart/opencart/issues/2148)
- Customer custom field error in registration [\#2147](https://github.com/opencart/opencart/issues/2147)
- SyntaxError: Unexpected end of input OK [\#2146](https://github.com/opencart/opencart/issues/2146)
- Product Special date is not working [\#2144](https://github.com/opencart/opencart/issues/2144)
- ajax post loop error in route=catalog/download/add [\#2142](https://github.com/opencart/opencart/issues/2142)
- Admin product images Bug [\#2139](https://github.com/opencart/opencart/issues/2139)
- No font size on product page for "note-editor" [\#2138](https://github.com/opencart/opencart/issues/2138)
- Double entry for $\_\['text\_confirm'\] in english admin language file [\#2134](https://github.com/opencart/opencart/issues/2134)
- Admin side Mail showing error [\#2133](https://github.com/opencart/opencart/issues/2133)
- you code bullshit! [\#2132](https://github.com/opencart/opencart/issues/2132)
- Content Form pages doesn't seem to be stripping slashes for form values [\#2130](https://github.com/opencart/opencart/issues/2130)
- Admin Settings: Undefined variable: text\_edit [\#2129](https://github.com/opencart/opencart/issues/2129)
- Fatal error: Uncaught exception 'ErrorException' with message 'Error: Unknown column 'o.date\_modified' in 'where clause' [\#2128](https://github.com/opencart/opencart/issues/2128)
- issue about the store credit in opencar 1.5.6 [\#2127](https://github.com/opencart/opencart/issues/2127)
- issue about the store credit in opencar 1.5.6 [\#2125](https://github.com/opencart/opencart/issues/2125)
- Opencart 2.0 OC2.0: pictures oversize in mobile view, any way to disable mobile view? [\#2123](https://github.com/opencart/opencart/issues/2123)
- issue about the store credit in opencart 1.5.6 [\#2122](https://github.com/opencart/opencart/issues/2122)
- is OC Sql Querys are bad coded ? [\#2120](https://github.com/opencart/opencart/issues/2120)
- Order error [\#2119](https://github.com/opencart/opencart/issues/2119)
- Extension installation error [\#2118](https://github.com/opencart/opencart/issues/2118)
- Empty value should be empty on summernote editor [\#2117](https://github.com/opencart/opencart/issues/2117)
- Update Modification documentation for recent changes! [\#2114](https://github.com/opencart/opencart/issues/2114)
- Featured Products Not Working Correctly in Multistores [\#2113](https://github.com/opencart/opencart/issues/2113)
- Remove banner items persistent tooltips; [\#2109](https://github.com/opencart/opencart/issues/2109)
- OC 2.0 and Explorer 8 - compatibility [\#2108](https://github.com/opencart/opencart/issues/2108)
- Bug in admin customer form [\#2107](https://github.com/opencart/opencart/issues/2107)
- Themes from ThemeForest for last version [\#2105](https://github.com/opencart/opencart/issues/2105)
- Site search [\#2104](https://github.com/opencart/opencart/issues/2104)
- order edit telphone,fax field dont be saved [\#2103](https://github.com/opencart/opencart/issues/2103)
- Bug in Admin Panel -\> Settings -\> Store -\> Settings [\#2102](https://github.com/opencart/opencart/issues/2102)
- First experience using Modifications and Installer [\#2100](https://github.com/opencart/opencart/issues/2100)
- Customer can not log into account [\#2099](https://github.com/opencart/opencart/issues/2099)
- Use single config file for site and admin [\#2098](https://github.com/opencart/opencart/issues/2098)
- dont show online customer on admin [\#2097](https://github.com/opencart/opencart/issues/2097)
- Admin panel -\> icon resize bug [\#2093](https://github.com/opencart/opencart/issues/2093)
- Admin settings poblem [\#2091](https://github.com/opencart/opencart/issues/2091)
- Undefined variable: text\_edit in /var/.../admin/view/template/setting/setting.tpl on line 29 [\#2089](https://github.com/opencart/opencart/issues/2089)
- 'Bestsellers' and 'Latest' modules not working [\#2087](https://github.com/opencart/opencart/issues/2087)
- Bug in admin product listing [\#2085](https://github.com/opencart/opencart/issues/2085)
- Success.php language file mistake [\#2073](https://github.com/opencart/opencart/issues/2073)
- admin orders edit request. [\#2071](https://github.com/opencart/opencart/issues/2071)
- Undefined variable: continue in /catalog/view/theme/default/template/products/special.tpl on line 105 [\#2070](https://github.com/opencart/opencart/issues/2070)
- Breadcrumb manufacturer error [\#2069](https://github.com/opencart/opencart/issues/2069)
- Unlimited coupon use when "use per customer" and "uses per coupon" set to 1 [\#2068](https://github.com/opencart/opencart/issues/2068)
- setting store's email with new gTLD admin/index.php?route=setting/setting [\#2066](https://github.com/opencart/opencart/issues/2066)
- test [\#2065](https://github.com/opencart/opencart/issues/2065)
- Error in the driver cache memcached. [\#2062](https://github.com/opencart/opencart/issues/2062)
- Extension installer should run $this-\>model\_extension\_extension-\>install\(\) or at least have the option to. [\#2061](https://github.com/opencart/opencart/issues/2061)
- Payment methods - moneybookers -\> skrill [\#2060](https://github.com/opencart/opencart/issues/2060)
- Adding new payment - Amazon Payments [\#2059](https://github.com/opencart/opencart/issues/2059)
- Adding picture [\#2058](https://github.com/opencart/opencart/issues/2058)
- Products -\>Special on Chrome [\#2057](https://github.com/opencart/opencart/issues/2057)
- Banner doesn't fit resizing window [\#2056](https://github.com/opencart/opencart/issues/2056)
- Notice: Undefined variable: text\_edit [\#2054](https://github.com/opencart/opencart/issues/2054)
- Order Model missing type-checking, throws error [\#2052](https://github.com/opencart/opencart/issues/2052)
- CURL Error on attempting to delete order \(SSL\) [\#2051](https://github.com/opencart/opencart/issues/2051)
- resets cart when clicked [\#2049](https://github.com/opencart/opencart/issues/2049)
- OpenCart 2.0 icon issue? [\#2047](https://github.com/opencart/opencart/issues/2047)
- OC2.0.0.1b: Bug in modification system [\#2045](https://github.com/opencart/opencart/issues/2045)
- Paypal Express after payment database error [\#2036](https://github.com/opencart/opencart/issues/2036)
- Incorrect list of regions of Ukraine [\#2035](https://github.com/opencart/opencart/issues/2035)
- Minor error in responsive design; [\#2034](https://github.com/opencart/opencart/issues/2034)
- issue in common.js [\#2033](https://github.com/opencart/opencart/issues/2033)
- Latest,Featured modules display issue [\#2032](https://github.com/opencart/opencart/issues/2032)
- "Payment method required" in admin -\> order edit [\#2031](https://github.com/opencart/opencart/issues/2031)
- caching.php is corrupted [\#2030](https://github.com/opencart/opencart/issues/2030)
- Paypal Express Checkout not sending address to Paypal [\#2027](https://github.com/opencart/opencart/issues/2027)
- home page banner slider dont refresh size when browser size is changed. [\#2025](https://github.com/opencart/opencart/issues/2025)
- top category menu not clickable , need to fix it. [\#2024](https://github.com/opencart/opencart/issues/2024)
- Installer should check for MySQLi or PDO extensions [\#2023](https://github.com/opencart/opencart/issues/2023)
- ... [\#2021](https://github.com/opencart/opencart/issues/2021)
- Order List [\#2018](https://github.com/opencart/opencart/issues/2018)
- Error Update order [\#2015](https://github.com/opencart/opencart/issues/2015)
- SEO Keywords "already exist" when left empty [\#2011](https://github.com/opencart/opencart/issues/2011)
- Opencart 2.0 Checkout missing coupon option [\#2010](https://github.com/opencart/opencart/issues/2010)
- Change URL structure to SEO friendly. [\#2008](https://github.com/opencart/opencart/issues/2008)
- \[question\] Mass discount [\#2006](https://github.com/opencart/opencart/issues/2006)
- Issue in setting [\#2003](https://github.com/opencart/opencart/issues/2003)
- Bug with installer when \< in password [\#2002](https://github.com/opencart/opencart/issues/2002)
- Adding Options does not work! [\#2001](https://github.com/opencart/opencart/issues/2001)
- Geo Zones contain Congo twice [\#2000](https://github.com/opencart/opencart/issues/2000)
- troubles with recurring payments [\#1999](https://github.com/opencart/opencart/issues/1999)
- Get error on Setting page [\#1998](https://github.com/opencart/opencart/issues/1998)
- Products: Image selection [\#1997](https://github.com/opencart/opencart/issues/1997)
- Bug On User.php Library [\#1995](https://github.com/opencart/opencart/issues/1995)
- Cannot create new Customer. Undefined index: custom\_field [\#1994](https://github.com/opencart/opencart/issues/1994)
- Cannot delete or edit an Order [\#1993](https://github.com/opencart/opencart/issues/1993)
- When copying existing product, both products are deleted from OpenCart and database [\#1991](https://github.com/opencart/opencart/issues/1991)
- Total calculation - excess cent\(s\) [\#1990](https://github.com/opencart/opencart/issues/1990)
- After install latest Master Admin cannot do anything: Access denied [\#1989](https://github.com/opencart/opencart/issues/1989)
- Localization [\#1987](https://github.com/opencart/opencart/issues/1987)
- Cheque/Money Order and Bank Transfer payment options not being displayed on Checkout Page. [\#1986](https://github.com/opencart/opencart/issues/1986)
- Modules - Banners, Slideshow and Carousel - v2? [\#1985](https://github.com/opencart/opencart/issues/1985)
- wrong regex in upgrade.php? [\#1984](https://github.com/opencart/opencart/issues/1984)
- OCMod does not allow you to modify startup.php! [\#1983](https://github.com/opencart/opencart/issues/1983)
- Html module Error ligne 5 v 2.0.0.0 [\#1982](https://github.com/opencart/opencart/issues/1982)
- Image upload issue in IE and Chrome [\#1981](https://github.com/opencart/opencart/issues/1981)
- Syntax error Fresh Install [\#1980](https://github.com/opencart/opencart/issues/1980)
- localStorage detection missing [\#1979](https://github.com/opencart/opencart/issues/1979)
- Buying a voucher triggers Free Checkout [\#1975](https://github.com/opencart/opencart/issues/1975)
- OCMod bugs [\#1967](https://github.com/opencart/opencart/issues/1967)
- Localization bug \#1911 [\#1962](https://github.com/opencart/opencart/issues/1962)
- Extension Installer Error [\#1961](https://github.com/opencart/opencart/issues/1961)
- OC 2.0: New order in backend throws json error [\#1958](https://github.com/opencart/opencart/issues/1958)
- Can't see product discount price [\#1956](https://github.com/opencart/opencart/issues/1956)
- Hidden admin menu elements still accessible [\#1955](https://github.com/opencart/opencart/issues/1955)
- Email Send is not working [\#1954](https://github.com/opencart/opencart/issues/1954)
- PayPal Express Checkout button not displayed \(v2.0.0.0 release version\) [\#1953](https://github.com/opencart/opencart/issues/1953)
- Log In with PayPal module not working [\#1952](https://github.com/opencart/opencart/issues/1952)
- hii i an not able to see and edit anything in admin pannel [\#1951](https://github.com/opencart/opencart/issues/1951)
- hii [\#1950](https://github.com/opencart/opencart/issues/1950)
- Fatal error: Call to a member function getUrlAlias\(\) on a non-object in /admin/controller/catalog/product.php on line 1328 [\#1949](https://github.com/opencart/opencart/issues/1949)
- TypeError: a\(...\).\_lang is undefined [\#1948](https://github.com/opencart/opencart/issues/1948)
- Category Page - Grid and List View Buttons do nothing on mobile view! [\#1947](https://github.com/opencart/opencart/issues/1947)
- Implementing only one config file [\#1946](https://github.com/opencart/opencart/issues/1946)
- Nav column issue on report/customer\_online [\#1944](https://github.com/opencart/opencart/issues/1944)
- Custom Profile Fields, value not showing [\#1943](https://github.com/opencart/opencart/issues/1943)
- Opencart 2.0 - Errors in the language files [\#1942](https://github.com/opencart/opencart/issues/1942)
- Unable to add space behind currency symbol in Admin [\#1941](https://github.com/opencart/opencart/issues/1941)
- Manually adding LESS as a mimetype in IIS should be mentioned somewhere in docs. [\#1940](https://github.com/opencart/opencart/issues/1940)
- Error message does not display on install step 3 [\#1939](https://github.com/opencart/opencart/issues/1939)
- Format currency in OpenCart [\#1938](https://github.com/opencart/opencart/issues/1938)
- forgot to adding the text\_edit [\#1936](https://github.com/opencart/opencart/issues/1936)
- Marketing - Contact not sending mail: E-Mail Message required! [\#1935](https://github.com/opencart/opencart/issues/1935)
- Product description CKEditor [\#1934](https://github.com/opencart/opencart/issues/1934)
- Pagination closing tags [\#1933](https://github.com/opencart/opencart/issues/1933)
- Error on upgrade to 2.0.0.0 [\#1932](https://github.com/opencart/opencart/issues/1932)
- Extension Installer Error [\#1931](https://github.com/opencart/opencart/issues/1931)
- OC2: Extension installer bugs [\#1928](https://github.com/opencart/opencart/issues/1928)
- modification refresh error [\#1927](https://github.com/opencart/opencart/issues/1927)
- Bestsellers module not enabling [\#1926](https://github.com/opencart/opencart/issues/1926)
- module name strip\_tags [\#1925](https://github.com/opencart/opencart/issues/1925)
- Summernotes editor insert images bug [\#1924](https://github.com/opencart/opencart/issues/1924)
- In admin area [\#1923](https://github.com/opencart/opencart/issues/1923)
- Accessibility issues [\#1922](https://github.com/opencart/opencart/issues/1922)
- Error Order Status Update [\#1921](https://github.com/opencart/opencart/issues/1921)
- Fix for module/latest image width/height settings in 2.0.0.0b3 [\#1920](https://github.com/opencart/opencart/issues/1920)
- OC2: Undefined variable: text\_edit in admin\view\template\setting\setting.tpl on line 29 [\#1918](https://github.com/opencart/opencart/issues/1918)
- Bug in admin\view\template\setting\setting.tpl on line 29 [\#1917](https://github.com/opencart/opencart/issues/1917)
- url alias problem [\#1915](https://github.com/opencart/opencart/issues/1915)
- OC2: bug in admin/controller/extension/modification.php [\#1914](https://github.com/opencart/opencart/issues/1914)
- Small image in products list [\#1913](https://github.com/opencart/opencart/issues/1913)
- Settings: Processing Order Status \ Complete Order Status bug [\#1912](https://github.com/opencart/opencart/issues/1912)
- Localization bug [\#1911](https://github.com/opencart/opencart/issues/1911)
- Problem with Profile Cliente Default [\#1910](https://github.com/opencart/opencart/issues/1910)
- space in scroll bar if select menu in rtl \(screenshot\) [\#1908](https://github.com/opencart/opencart/issues/1908)
- flexslider not support rtl if direction rtl [\#1907](https://github.com/opencart/opencart/issues/1907)
- Images not visible with image manager version 1.5.6.4 [\#1905](https://github.com/opencart/opencart/issues/1905)
- OCMod wiki update [\#1904](https://github.com/opencart/opencart/issues/1904)
- PHP Notice: Undefined variable: text\_edit [\#1903](https://github.com/opencart/opencart/issues/1903)
- Extension installer [\#1902](https://github.com/opencart/opencart/issues/1902)
- Issue with Image Picker in Summernote adding image in wrong place. [\#1901](https://github.com/opencart/opencart/issues/1901)
- Strange behavoir with namespacing on PDO driver! [\#1900](https://github.com/opencart/opencart/issues/1900)
- home page manufacturer logo not clickable [\#1899](https://github.com/opencart/opencart/issues/1899)
- Opencart 2.0 - Undefined variable text\_edit in admin store settings title [\#1897](https://github.com/opencart/opencart/issues/1897)
- Problem with datetimepicker in Product Edit page. [\#1896](https://github.com/opencart/opencart/issues/1896)
- Opencart 2.0 - Installation Database error messages not passed [\#1895](https://github.com/opencart/opencart/issues/1895)
- Opencart 2.0 - Installation Database Prefix Issue & Solution [\#1894](https://github.com/opencart/opencart/issues/1894)
- Header alert messages not in a one line [\#1892](https://github.com/opencart/opencart/issues/1892)
**Merged pull requests:**
- Fix breadcrumbs and request post width [\#2378](https://github.com/opencart/opencart/pull/2378) ([dangtienngoc](https://github.com/dangtienngoc))
- Update opencart.sql [\#2369](https://github.com/opencart/opencart/pull/2369) ([CoverUp](https://github.com/CoverUp))
- Update modification.php [\#2358](https://github.com/opencart/opencart/pull/2358) ([saifwebberoo](https://github.com/saifwebberoo))
- Update filter.tpl [\#2357](https://github.com/opencart/opencart/pull/2357) ([CoverUp](https://github.com/CoverUp))
- Fixed smtp send mail. [\#2356](https://github.com/opencart/opencart/pull/2356) ([jonasmello](https://github.com/jonasmello))
- OpenBay Pro update for latest release. [\#2353](https://github.com/opencart/opencart/pull/2353) ([jamesallsup](https://github.com/jamesallsup))
- Update customer.php [\#2338](https://github.com/opencart/opencart/pull/2338) ([anrip](https://github.com/anrip))
- Remove Hungarian Regions [\#2337](https://github.com/opencart/opencart/pull/2337) ([OC2PS](https://github.com/OC2PS))
- Fix link "How to documents" [\#2317](https://github.com/opencart/opencart/pull/2317) ([ManoelVidal](https://github.com/ManoelVidal))
- Update currency.php [\#2308](https://github.com/opencart/opencart/pull/2308) ([OpenCartAddons](https://github.com/OpenCartAddons))
- LIPP - Fixed issue with unapproved logins [\#2303](https://github.com/opencart/opencart/pull/2303) ([davidteal](https://github.com/davidteal))
- Update length.php [\#2296](https://github.com/opencart/opencart/pull/2296) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Fix Printing Styles [\#2288](https://github.com/opencart/opencart/pull/2288) ([uksitebuilder](https://github.com/uksitebuilder))
- using 'destroy' to remove tooltips, tooltips are now active on newly add... [\#2253](https://github.com/opencart/opencart/pull/2253) ([websitedesignby](https://github.com/websitedesignby))
- Added Auto Sort Order Number on Filter, Option, Product Image, Banner and Layout Form [\#2249](https://github.com/opencart/opencart/pull/2249) ([eka7a](https://github.com/eka7a))
- rename no\_image.jpg -\> no\_image.png when selecting new template [\#2244](https://github.com/opencart/opencart/pull/2244) ([websitedesignby](https://github.com/websitedesignby))
- remove tooltip before deleting option row [\#2241](https://github.com/opencart/opencart/pull/2241) ([websitedesignby](https://github.com/websitedesignby))
- Confirm bug branch [\#2228](https://github.com/opencart/opencart/pull/2228) ([chris-wm](https://github.com/chris-wm))
- Update special.php [\#2219](https://github.com/opencart/opencart/pull/2219) ([manakill](https://github.com/manakill))
- Bug fix: customer no approved can now be approved from customer list [\#2207](https://github.com/opencart/opencart/pull/2207) ([makeen](https://github.com/makeen))
- Update nochex.tpl [\#2191](https://github.com/opencart/opencart/pull/2191) ([Equotix](https://github.com/Equotix))
- Update sagepay\_direct.tpl [\#2190](https://github.com/opencart/opencart/pull/2190) ([Equotix](https://github.com/Equotix))
- Design/Layout title fix in select dropdown [\#2188](https://github.com/opencart/opencart/pull/2188) ([Dreamvention](https://github.com/Dreamvention))
- check if $session-\>data\['guest'\]\['customer\_group\_id'\] & $session-\>data\[... [\#2180](https://github.com/opencart/opencart/pull/2180) ([Dreamvention](https://github.com/Dreamvention))
- Update owl.carousel.css [\#2175](https://github.com/opencart/opencart/pull/2175) ([CoverUp](https://github.com/CoverUp))
- bugfix - Fedex quoted rates always return account rates and ignore config setting [\#2168](https://github.com/opencart/opencart/pull/2168) ([janitor61](https://github.com/janitor61))
- BUG FIX on category.tpl [\#2167](https://github.com/opencart/opencart/pull/2167) ([CoverUp](https://github.com/CoverUp))
- "404 Not Found" for nonexistent information pages [\#2166](https://github.com/opencart/opencart/pull/2166) ([opencarthelp](https://github.com/opencarthelp))
- Fix some incorrect breadcrumbs [\#2158](https://github.com/opencart/opencart/pull/2158) ([uksitebuilder](https://github.com/uksitebuilder))
- Fix PayPal Pro Iframe [\#2153](https://github.com/opencart/opencart/pull/2153) ([uksitebuilder](https://github.com/uksitebuilder))
- Fix Some Incomplete Breadcrumbs [\#2140](https://github.com/opencart/opencart/pull/2140) ([uksitebuilder](https://github.com/uksitebuilder))
- OpenBay Pro update for latest release. [\#2131](https://github.com/opencart/opencart/pull/2131) ([jamesallsup](https://github.com/jamesallsup))
- fixed missing $ssl property [\#2121](https://github.com/opencart/opencart/pull/2121) ([tomkoo](https://github.com/tomkoo))
- OC 2.0.0.1: Fixed persistent tooltips in design/banners [\#2112](https://github.com/opencart/opencart/pull/2112) ([gortsilas](https://github.com/gortsilas))
- Fix Layout Routes [\#2110](https://github.com/opencart/opencart/pull/2110) ([uksitebuilder](https://github.com/uksitebuilder))
- Update reward.php [\#2096](https://github.com/opencart/opencart/pull/2096) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Update customer\_list.tpl [\#2095](https://github.com/opencart/opencart/pull/2095) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Update low\_order\_fee.php [\#2094](https://github.com/opencart/opencart/pull/2094) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Fixed category count to be called only when count is turned on [\#2086](https://github.com/opencart/opencart/pull/2086) ([davidteal](https://github.com/davidteal))
- OC 2.0.0.1b: Fixed language file success.php for account and affiliates [\#2076](https://github.com/opencart/opencart/pull/2076) ([gortsilas](https://github.com/gortsilas))
- OC 2.0.0.1b: Fixed breadcrumb link in manufacturer error page [\#2074](https://github.com/opencart/opencart/pull/2074) ([gortsilas](https://github.com/gortsilas))
- OC 2.0.0.1b: Fixed missing text for button\_continue when special is empty [\#2072](https://github.com/opencart/opencart/pull/2072) ([gortsilas](https://github.com/gortsilas))
- BUG FIX on address\_form.tpl [\#2067](https://github.com/opencart/opencart/pull/2067) ([CoverUp](https://github.com/CoverUp))
- OC 2.0.0.1b: Fixed notifications drop down in admin header [\#2055](https://github.com/opencart/opencart/pull/2055) ([gortsilas](https://github.com/gortsilas))
- Typo in installer admin language file [\#2043](https://github.com/opencart/opencart/pull/2043) ([gortsilas](https://github.com/gortsilas))
- Two typos in file comments [\#2042](https://github.com/opencart/opencart/pull/2042) ([gortsilas](https://github.com/gortsilas))
- Fixed image padding in product list view [\#2041](https://github.com/opencart/opencart/pull/2041) ([gortsilas](https://github.com/gortsilas))
- Opencart 2.0 paypal\_order field date\_modified issue \#2036 [\#2040](https://github.com/opencart/opencart/pull/2040) ([gortsilas](https://github.com/gortsilas))
- Update common.js [\#2039](https://github.com/opencart/opencart/pull/2039) ([latestthemes](https://github.com/latestthemes))
- Update opencart.sql [\#2038](https://github.com/opencart/opencart/pull/2038) ([stalker780](https://github.com/stalker780))
- Added missing custom fields on sale/order/info [\#2029](https://github.com/opencart/opencart/pull/2029) ([CoverUp](https://github.com/CoverUp))
- Update product.tpl [\#2026](https://github.com/opencart/opencart/pull/2026) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Update opencart.sql [\#2016](https://github.com/opencart/opencart/pull/2016) ([CoverUp](https://github.com/CoverUp))
- BUG FIX on affiliate\_list.tpl [\#2014](https://github.com/opencart/opencart/pull/2014) ([CoverUp](https://github.com/CoverUp))
- Fix for URL alias empty string [\#2013](https://github.com/opencart/opencart/pull/2013) ([JAY6390](https://github.com/JAY6390))
- add url\_alias and redirect 301 [\#2009](https://github.com/opencart/opencart/pull/2009) ([opencart-russia](https://github.com/opencart-russia))
- Update stylesheet.css [\#2005](https://github.com/opencart/opencart/pull/2005) ([mmosolution](https://github.com/mmosolution))
- Update seo\_url.php fix for another route [\#2004](https://github.com/opencart/opencart/pull/2004) ([opencart-russia](https://github.com/opencart-russia))
- Removing unused file [\#1996](https://github.com/opencart/opencart/pull/1996) ([davidteal](https://github.com/davidteal))
- Fix admin permissions/unserialize error \(\#1989\) [\#1992](https://github.com/opencart/opencart/pull/1992) ([opencarthelp](https://github.com/opencarthelp))
- better specified extensions in Extension Installer [\#1976](https://github.com/opencart/opencart/pull/1976) ([martinille](https://github.com/martinille))
- BUG FIX on address\_form.tpl [\#1974](https://github.com/opencart/opencart/pull/1974) ([CoverUp](https://github.com/CoverUp))
- BUG FIX on address.php [\#1973](https://github.com/opencart/opencart/pull/1973) ([CoverUp](https://github.com/CoverUp))
- Corrected 2 typos [\#1971](https://github.com/opencart/opencart/pull/1971) ([gortsilas](https://github.com/gortsilas))
- FAO James - using order currency code instead of default store currency ... [\#1965](https://github.com/opencart/opencart/pull/1965) ([chris-wm](https://github.com/chris-wm))
- Fixed Multi Store Order on Custmor/Orders page [\#1964](https://github.com/opencart/opencart/pull/1964) ([eka7a](https://github.com/eka7a))
- Fixing accidental profile to recurring replace for Log in With PayPal [\#1963](https://github.com/opencart/opencart/pull/1963) ([davidteal](https://github.com/davidteal))
- Corrected typo, changed 'date\_added' to 'added' [\#1960](https://github.com/opencart/opencart/pull/1960) ([gortsilas](https://github.com/gortsilas))
- Update category.php [\#1959](https://github.com/opencart/opencart/pull/1959) ([tomkoo](https://github.com/tomkoo))
- Error validate updated [\#1957](https://github.com/opencart/opencart/pull/1957) ([eka7a](https://github.com/eka7a))
- Fixed load model URL Alias [\#1945](https://github.com/opencart/opencart/pull/1945) ([eka7a](https://github.com/eka7a))
- Update installer.php [\#1929](https://github.com/opencart/opencart/pull/1929) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Fixed image\_width and image\_height modules [\#1916](https://github.com/opencart/opencart/pull/1916) ([eka7a](https://github.com/eka7a))
- More DB driver namespace fixes [\#1909](https://github.com/opencart/opencart/pull/1909) ([opencarthelp](https://github.com/opencarthelp))
- Progress bars in the stats.tpl doesn't scale [\#1906](https://github.com/opencart/opencart/pull/1906) ([nutama](https://github.com/nutama))
- Fix calc of PROFILESTARTDATE with proper "gm" func [\#1861](https://github.com/opencart/opencart/pull/1861) ([pcgamez](https://github.com/pcgamez))
- Update seo\_url.php [\#1802](https://github.com/opencart/opencart/pull/1802) ([ghost](https://github.com/ghost))
## [2.0.0.0](https://github.com/opencart/opencart/tree/2.0.0.0) (2014-10-01)
[Full Changelog](https://github.com/opencart/opencart/compare/2.0.0.0b3...2.0.0.0)
**Closed issues:**
- Resizing Image That Has Been Uploaded [\#1887](https://github.com/opencart/opencart/issues/1887)
- how to edit customer email messages in admin ? [\#1885](https://github.com/opencart/opencart/issues/1885)
- duplicate layout common/home in sql [\#1884](https://github.com/opencart/opencart/issues/1884)
- error log message for recurring\_form.tpl [\#1882](https://github.com/opencart/opencart/issues/1882)
- fix stylesheet for banner and carousel module [\#1881](https://github.com/opencart/opencart/issues/1881)
- Google Analytics escape quotes [\#1880](https://github.com/opencart/opencart/issues/1880)
- strange language behaviour [\#1879](https://github.com/opencart/opencart/issues/1879)
- Checkout term and conditions do not open in colorbox [\#1878](https://github.com/opencart/opencart/issues/1878)
- frontend slide isue [\#1877](https://github.com/opencart/opencart/issues/1877)
- Make PHP 5.4 OpenCart's Minimum Version [\#1874](https://github.com/opencart/opencart/issues/1874)
- OC2: Please implement a proper language fallback [\#1873](https://github.com/opencart/opencart/issues/1873)
- Add a dedicated upload directory [\#1869](https://github.com/opencart/opencart/issues/1869)
- summernote issues [\#1867](https://github.com/opencart/opencart/issues/1867)
- FrontEnd Issue [\#1866](https://github.com/opencart/opencart/issues/1866)
- Design issue OpenCart 2.0 Beta [\#1865](https://github.com/opencart/opencart/issues/1865)
- shopping cart on top can grow very wide hiding currency sellector [\#1860](https://github.com/opencart/opencart/issues/1860)
- Delete button on File Manager don't ask to confirm action [\#1857](https://github.com/opencart/opencart/issues/1857)
- Additional language fallback to english/default [\#1366](https://github.com/opencart/opencart/issues/1366)
**Merged pull requests:**
- OpenBay update pre-release [\#1891](https://github.com/opencart/opencart/pull/1891) ([jamesallsup](https://github.com/jamesallsup))
- Marketing Tracking doesn't count orders [\#1886](https://github.com/opencart/opencart/pull/1886) ([devtsit](https://github.com/devtsit))
- Missing ";" at recurring language file [\#1883](https://github.com/opencart/opencart/pull/1883) ([devtsit](https://github.com/devtsit))
- Update opencart.sql [\#1876](https://github.com/opencart/opencart/pull/1876) ([skithund](https://github.com/skithund))
- Update image.php [\#1784](https://github.com/opencart/opencart/pull/1784) ([ghost](https://github.com/ghost))
## [2.0.0.0b3](https://github.com/opencart/opencart/tree/2.0.0.0b3) (2014-09-27)
[Full Changelog](https://github.com/opencart/opencart/compare/2.0.0.0b2...2.0.0.0b3)
**Closed issues:**
- opencart.sql incomplete [\#1872](https://github.com/opencart/opencart/issues/1872)
- Database didn't build [\#1871](https://github.com/opencart/opencart/issues/1871)
- database prefix not fixed in last beta. [\#1870](https://github.com/opencart/opencart/issues/1870)
- OpenCart installation should check for ZipArchive availability [\#1863](https://github.com/opencart/opencart/issues/1863)
- Some files don't have proper line endings! [\#1862](https://github.com/opencart/opencart/issues/1862)
**Merged pull requests:**
- Pass zlib installer text [\#1868](https://github.com/opencart/opencart/pull/1868) ([opencarthelp](https://github.com/opencarthelp))
## [2.0.0.0b2](https://github.com/opencart/opencart/tree/2.0.0.0b2) (2014-09-25)
[Full Changelog](https://github.com/opencart/opencart/compare/2.0.0.0b1...2.0.0.0b2)
**Closed issues:**
- Modules not showing up [\#1859](https://github.com/opencart/opencart/issues/1859)
- Tadabase update [\#1856](https://github.com/opencart/opencart/issues/1856)
- category,manufacturer link in product add page and also in modules problem [\#1854](https://github.com/opencart/opencart/issues/1854)
- Automatic login after user registration [\#1853](https://github.com/opencart/opencart/issues/1853)
- Table Prefix Problem [\#1852](https://github.com/opencart/opencart/issues/1852)
- Admin navigation and setting saving error [\#1851](https://github.com/opencart/opencart/issues/1851)
- PDO Namespacing error [\#1848](https://github.com/opencart/opencart/issues/1848)
- Provide a message when not able to connect to database [\#1845](https://github.com/opencart/opencart/issues/1845)
- email validation [\#1844](https://github.com/opencart/opencart/issues/1844)
- typo error in 'still updating the modules section', commit 095dd84db92b0a7a558bf33267bfacf3f97ab0de [\#1842](https://github.com/opencart/opencart/issues/1842)
- Different breadcrumbs [\#1841](https://github.com/opencart/opencart/issues/1841)
- Admin login not possible after installation \(Softaculous\) [\#1836](https://github.com/opencart/opencart/issues/1836)
- Error displaying double category parents in admin. [\#1831](https://github.com/opencart/opencart/issues/1831)
- Product image seemes buggy [\#1830](https://github.com/opencart/opencart/issues/1830)
- product sort on frontend does not work in latest OC [\#1826](https://github.com/opencart/opencart/issues/1826)
- SyntaxError: Unexpected end of input OK [\#1825](https://github.com/opencart/opencart/issues/1825)
- product layouts not correctly copied [\#1824](https://github.com/opencart/opencart/issues/1824)
- OC2: OCmod files not written [\#1823](https://github.com/opencart/opencart/issues/1823)
- Critical issue with admin images [\#1821](https://github.com/opencart/opencart/issues/1821)
- session\_save\_path for windows [\#1820](https://github.com/opencart/opencart/issues/1820)
- OC2: Bug in admin Error Permission template [\#1817](https://github.com/opencart/opencart/issues/1817)
- OC2: Please don't external websites when loading an OpenCart page [\#1816](https://github.com/opencart/opencart/issues/1816)
- OC2: Please re-configure Summernote to generate cleaner code [\#1815](https://github.com/opencart/opencart/issues/1815)
- OC2: Please get rid off OpenBay PRO [\#1814](https://github.com/opencart/opencart/issues/1814)
- \[Bug\] Placing and order in the back-office [\#1812](https://github.com/opencart/opencart/issues/1812)
- Image double-click problem [\#1810](https://github.com/opencart/opencart/issues/1810)
- Use more events to help developer modify core template and controller without vqmod [\#1803](https://github.com/opencart/opencart/issues/1803)
- FedEx Module - List Rate Selected but Displaying Discounted Account Rate [\#1777](https://github.com/opencart/opencart/issues/1777)
- ocmod should, at least, have the option not to use the db [\#1769](https://github.com/opencart/opencart/issues/1769)
- pp express has bad code [\#1742](https://github.com/opencart/opencart/issues/1742)
- First Data EMEA Connect [\#1740](https://github.com/opencart/opencart/issues/1740)
- bluepay hosted admin buttons [\#1737](https://github.com/opencart/opencart/issues/1737)
- correct layout when we have form errors [\#1690](https://github.com/opencart/opencart/issues/1690)
- OC Mod allows for uploading same file multiple times! [\#1530](https://github.com/opencart/opencart/issues/1530)
- MD5 hash field on authorize.net and opencart aim module are not compatible. [\#1419](https://github.com/opencart/opencart/issues/1419)
- pp\_express.php + coupon discount. [\#1324](https://github.com/opencart/opencart/issues/1324)
**Merged pull requests:**
- Carousel image size [\#1858](https://github.com/opencart/opencart/pull/1858) ([JamesAtkinson](https://github.com/JamesAtkinson))
- Changes to install to auto enable / disable during install / uninstall [\#1850](https://github.com/opencart/opencart/pull/1850) ([jamesallsup](https://github.com/jamesallsup))
- OpenBay update. [\#1849](https://github.com/opencart/opencart/pull/1849) ([jamesallsup](https://github.com/jamesallsup))
- Currency class unit test [\#1838](https://github.com/opencart/opencart/pull/1838) ([opencarthelp](https://github.com/opencarthelp))
- Update sale.php [\#1835](https://github.com/opencart/opencart/pull/1835) ([mmosolution](https://github.com/mmosolution))
- OpenBay Pro Update. [\#1834](https://github.com/opencart/opencart/pull/1834) ([jamesallsup](https://github.com/jamesallsup))
- OpenBay Pro updates [\#1829](https://github.com/opencart/opencart/pull/1829) ([jamesallsup](https://github.com/jamesallsup))
- Removed FE events from OpenBay Pro [\#1819](https://github.com/opencart/opencart/pull/1819) ([jamesallsup](https://github.com/jamesallsup))
- OpenBay Pro updates [\#1818](https://github.com/opencart/opencart/pull/1818) ([jamesallsup](https://github.com/jamesallsup))
## [2.0.0.0b1](https://github.com/opencart/opencart/tree/2.0.0.0b1) (2014-09-05)
[Full Changelog](https://github.com/opencart/opencart/compare/2.0.0.0a4...2.0.0.0b1)
**Closed issues:**
- Language library has not been used rightly? [\#1809](https://github.com/opencart/opencart/issues/1809)
- Check SEO Keywords to prevent duplication [\#1808](https://github.com/opencart/opencart/issues/1808)
- Error while try to open Extension Installer [\#1807](https://github.com/opencart/opencart/issues/1807)
- Some header bug [\#1806](https://github.com/opencart/opencart/issues/1806)
- Bugs in order process from the backoffice [\#1805](https://github.com/opencart/opencart/issues/1805)
- \[Admin\] Sort Order within Options Display [\#1795](https://github.com/opencart/opencart/issues/1795)
- Event system [\#1793](https://github.com/opencart/opencart/issues/1793)
- OC2: Various errors in admin \> Sales \> Recurring Orders [\#1792](https://github.com/opencart/opencart/issues/1792)
- Admin mobile content outside of viewport when navigation menu is open [\#1791](https://github.com/opencart/opencart/issues/1791)
- OC 2 system/engine/action.php bug [\#1790](https://github.com/opencart/opencart/issues/1790)
- OC 2 still broken because of namespace [\#1789](https://github.com/opencart/opencart/issues/1789)
- Failed to load resource: the server responded with a status of 404 \(Not Found\) [\#1787](https://github.com/opencart/opencart/issues/1787)
- Can't make an order in the backoffice [\#1786](https://github.com/opencart/opencart/issues/1786)
- namespace usage, events bugs [\#1785](https://github.com/opencart/opencart/issues/1785)
- Featured Module - Unnecessary field stored in oc\_setting table [\#1779](https://github.com/opencart/opencart/issues/1779)
- Some suggestion for OpenCart GUI Interface [\#1778](https://github.com/opencart/opencart/issues/1778)
- Opencart/hostjars? [\#1775](https://github.com/opencart/opencart/issues/1775)
- OpenCart web site? [\#1774](https://github.com/opencart/opencart/issues/1774)
- Undefined method ModelSaleRecurring::getTotalRecurrings\(\) [\#1773](https://github.com/opencart/opencart/issues/1773)
- Notice: Undefined variable: button\_continue [\#1768](https://github.com/opencart/opencart/issues/1768)
- Manufacturer SEO improvement [\#1764](https://github.com/opencart/opencart/issues/1764)
- Products [\#1763](https://github.com/opencart/opencart/issues/1763)
- Changing the length of username for the admin login [\#1762](https://github.com/opencart/opencart/issues/1762)
- Summernote - Image insertion [\#1761](https://github.com/opencart/opencart/issues/1761)
- Fatal error: Call to undefined method ModelCatalogProduct::getProfiles\(\) [\#1760](https://github.com/opencart/opencart/issues/1760)
- vQMod? [\#1759](https://github.com/opencart/opencart/issues/1759)
- Undefined variable: class [\#1754](https://github.com/opencart/opencart/issues/1754)
- Missing tab\_recurring in admin/language/english/english.php [\#1752](https://github.com/opencart/opencart/issues/1752)
- unserialise error in admin backend [\#1751](https://github.com/opencart/opencart/issues/1751)
- Store front categories menu [\#1749](https://github.com/opencart/opencart/issues/1749)
- URL Alias Table Structure [\#1748](https://github.com/opencart/opencart/issues/1748)
- dup code in catalog/controller/checkout/manual.php [\#1746](https://github.com/opencart/opencart/issues/1746)
- CSS [\#1745](https://github.com/opencart/opencart/issues/1745)
- text\_help [\#1741](https://github.com/opencart/opencart/issues/1741)
- ocmod logging [\#1739](https://github.com/opencart/opencart/issues/1739)
- order info buttons [\#1738](https://github.com/opencart/opencart/issues/1738)
- Profiles need to be renamed to Recurring [\#1736](https://github.com/opencart/opencart/issues/1736)
- Amazon Payments [\#1735](https://github.com/opencart/opencart/issues/1735)
- Central Location for uploads [\#1685](https://github.com/opencart/opencart/issues/1685)
- Mail not being sent. [\#1583](https://github.com/opencart/opencart/issues/1583)
**Merged pull requests:**
- OpenBay initial merge [\#1811](https://github.com/opencart/opencart/pull/1811) ([jamesallsup](https://github.com/jamesallsup))
- Update recurring.php [\#1800](https://github.com/opencart/opencart/pull/1800) ([ghost](https://github.com/ghost))
- Update pp\_express.php [\#1799](https://github.com/opencart/opencart/pull/1799) ([ghost](https://github.com/ghost))
- Update recurring.php [\#1798](https://github.com/opencart/opencart/pull/1798) ([ghost](https://github.com/ghost))
- Update product.php [\#1783](https://github.com/opencart/opencart/pull/1783) ([ghost](https://github.com/ghost))
- Update customer\_online.php [\#1782](https://github.com/opencart/opencart/pull/1782) ([ghost](https://github.com/ghost))
- undefined method Response::setContentType? [\#1770](https://github.com/opencart/opencart/pull/1770) ([pine3ree](https://github.com/pine3ree))
- Update cache.php [\#1767](https://github.com/opencart/opencart/pull/1767) ([JAY6390](https://github.com/JAY6390))
- Update db.php [\#1766](https://github.com/opencart/opencart/pull/1766) ([JAY6390](https://github.com/JAY6390))
## [2.0.0.0a4](https://github.com/opencart/opencart/tree/2.0.0.0a4) (2014-08-14)
[Full Changelog](https://github.com/opencart/opencart/compare/2.0.0.0a3...2.0.0.0a4)
**Closed issues:**
- Localization causes information pages to be hidden [\#1732](https://github.com/opencart/opencart/issues/1732)
- Store admin customer bug [\#1721](https://github.com/opencart/opencart/issues/1721)
- Admin panel current user info wrong [\#1720](https://github.com/opencart/opencart/issues/1720)
- Custom field without Title [\#1719](https://github.com/opencart/opencart/issues/1719)
- single link for url \(scrap the SSL link\) ? [\#1717](https://github.com/opencart/opencart/issues/1717)
- Menu error [\#1716](https://github.com/opencart/opencart/issues/1716)
- Modification does not work \(as used with vqmod\) [\#1561](https://github.com/opencart/opencart/issues/1561)
- Installer \> folder upload [\#1560](https://github.com/opencart/opencart/issues/1560)
- Use class "has-error" to highlight form fields that has errors in them [\#1235](https://github.com/opencart/opencart/issues/1235)
- Removing a product from an order will remove all inactive products [\#878](https://github.com/opencart/opencart/issues/878)
**Merged pull requests:**
- Adds missing username field to admin profile template [\#1734](https://github.com/opencart/opencart/pull/1734) ([Server4001](https://github.com/Server4001))
- Coding standards fixes for CBA admin controller and view [\#1733](https://github.com/opencart/opencart/pull/1733) ([davidteal](https://github.com/davidteal))
- OC-1800 - Fix for ups when no rates available [\#1731](https://github.com/opencart/opencart/pull/1731) ([davidteal](https://github.com/davidteal))
- OC-1815 - Fixing mandatory fields bug when empty. [\#1729](https://github.com/opencart/opencart/pull/1729) ([davidteal](https://github.com/davidteal))
- Fixes custom fields language error. [\#1724](https://github.com/opencart/opencart/pull/1724) ([steven-wm](https://github.com/steven-wm))
- Fixed opencart.sql for CREATE TABLE oc\_settings [\#1722](https://github.com/opencart/opencart/pull/1722) ([shadyyx](https://github.com/shadyyx))
## [2.0.0.0a3](https://github.com/opencart/opencart/tree/2.0.0.0a3) (2014-08-08)
[Full Changelog](https://github.com/opencart/opencart/compare/2.0.0.0a2...2.0.0.0a3)
**Closed issues:**
- I have the issue when i save the update product ... please ASAP :\( :\( [\#1714](https://github.com/opencart/opencart/issues/1714)
- Captcha verification does not match the image with writing a review [\#1713](https://github.com/opencart/opencart/issues/1713)
- error in errorlog after clean install [\#1709](https://github.com/opencart/opencart/issues/1709)
- Admin error [\#1706](https://github.com/opencart/opencart/issues/1706)
- SEO keyword for category destroy category list [\#1691](https://github.com/opencart/opencart/issues/1691)
**Merged pull requests:**
- Updating PayPal Express version number needed to use Seamless Checkout \(... [\#1711](https://github.com/opencart/opencart/pull/1711) ([davidteal](https://github.com/davidteal))
- Removed phone number link in top bar [\#1710](https://github.com/opencart/opencart/pull/1710) ([JamesAtkinson](https://github.com/JamesAtkinson))
- Update event.php [\#1708](https://github.com/opencart/opencart/pull/1708) ([JAY6390](https://github.com/JAY6390))
- Changed "Continue" To "Submit" for Contact Us and Return Forms [\#1705](https://github.com/opencart/opencart/pull/1705) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Added HTML support for Admin Order Notification email [\#1704](https://github.com/opencart/opencart/pull/1704) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Fixed form Submit for IE Browser and clear white space [\#1703](https://github.com/opencart/opencart/pull/1703) ([eka7a](https://github.com/eka7a))
- Styled the currency dropdown. [\#1701](https://github.com/opencart/opencart/pull/1701) ([JamesAtkinson](https://github.com/JamesAtkinson))
- Changes to search transactions page. [\#1700](https://github.com/opencart/opencart/pull/1700) ([steven-wm](https://github.com/steven-wm))
- Fixed sort order on category list and Larger "No Image" [\#1699](https://github.com/opencart/opencart/pull/1699) ([eka7a](https://github.com/eka7a))
- Currency select [\#1697](https://github.com/opencart/opencart/pull/1697) ([JamesAtkinson](https://github.com/JamesAtkinson))
- Fixes a typo on the product return page. [\#1694](https://github.com/opencart/opencart/pull/1694) ([steven-wm](https://github.com/steven-wm))
- code optimization [\#1693](https://github.com/opencart/opencart/pull/1693) ([stan-bg](https://github.com/stan-bg))
- Added Custom Heading Title in Welcome module and rename module [\#1692](https://github.com/opencart/opencart/pull/1692) ([eka7a](https://github.com/eka7a))
## [2.0.0.0a2](https://github.com/opencart/opencart/tree/2.0.0.0a2) (2014-08-06)
[Full Changelog](https://github.com/opencart/opencart/compare/2.0.0.0a1...2.0.0.0a2)
**Closed issues:**
- Proper output for product form fields' values [\#1688](https://github.com/opencart/opencart/issues/1688)
- Opencart- “not all related options are set” error after configuring related products option extension [\#1687](https://github.com/opencart/opencart/issues/1687)
**Merged pull requests:**
- Pagination with rel="next" and re="prev" on Catalog [\#1684](https://github.com/opencart/opencart/pull/1684) ([eka7a](https://github.com/eka7a))
- fix minor typo [\#1683](https://github.com/opencart/opencart/pull/1683) ([stan-bg](https://github.com/stan-bg))
- Adding return URL to LIPP [\#1682](https://github.com/opencart/opencart/pull/1682) ([davidteal](https://github.com/davidteal))
## [2.0.0.0a1](https://github.com/opencart/opencart/tree/2.0.0.0a1) (2014-08-05)
[Full Changelog](https://github.com/opencart/opencart/compare/1.5.6.4...2.0.0.0a1)
**Closed issues:**
- install test mysql not mysqli [\#1680](https://github.com/opencart/opencart/issues/1680)
- Telephone/fax number validation [\#1678](https://github.com/opencart/opencart/issues/1678)
- seo\_url fails when query string contains array parameters [\#1674](https://github.com/opencart/opencart/issues/1674)
- cart not carrying over between multi stores in chrome or firefox [\#1669](https://github.com/opencart/opencart/issues/1669)
- \[KIS-2014-08\] OpenCart PHP Object Injection Vulnerability [\#1667](https://github.com/opencart/opencart/issues/1667)
- Fatal error: Class 'DB' not found in /home/XXXX/public\_html/index.php on line 40 [\#1666](https://github.com/opencart/opencart/issues/1666)
- Undefined variable : salt in line 14 customer.php [\#1664](https://github.com/opencart/opencart/issues/1664)
- not to declare $ this-\>load-\>model [\#1662](https://github.com/opencart/opencart/issues/1662)
- Chrome browser Unexpected Token \< on JSON [\#1661](https://github.com/opencart/opencart/issues/1661)
- Warning: implode\(\): Invalid arguments passed in ...admin\controller\common\header.php on line 62,63,66,67 [\#1660](https://github.com/opencart/opencart/issues/1660)
- how to fix print preview blank page issue in chrome on opencart website ? [\#1659](https://github.com/opencart/opencart/issues/1659)
- Categories "banner" disappears [\#1658](https://github.com/opencart/opencart/issues/1658)
- order.php mixup with braces. [\#1657](https://github.com/opencart/opencart/issues/1657)
- \[2.0\] why 'Meta Tag Title' is necessary in Product add? [\#1656](https://github.com/opencart/opencart/issues/1656)
- Checkout doesn't work in opencart 1.5.6.4 [\#1655](https://github.com/opencart/opencart/issues/1655)
- add validation on order page when deleting or printing without selecting an order [\#1653](https://github.com/opencart/opencart/issues/1653)
- fix typo [\#1650](https://github.com/opencart/opencart/issues/1650)
- pp\_express total discrepancy [\#1649](https://github.com/opencart/opencart/issues/1649)
- getcustomers function removed [\#1648](https://github.com/opencart/opencart/issues/1648)
- Unused code in admin controller files! [\#1647](https://github.com/opencart/opencart/issues/1647)
- Incorrect methods in search.tpl \(catalog \> view\) [\#1646](https://github.com/opencart/opencart/issues/1646)
- How can i install vqmod? [\#1644](https://github.com/opencart/opencart/issues/1644)
- DB table oc\_event not created during install \(OC 2.0 master branch\) [\#1643](https://github.com/opencart/opencart/issues/1643)
- Product Weight column should be added on INVOICE so get better idea for dispatch department [\#1642](https://github.com/opencart/opencart/issues/1642)
- Rename system/library/event.php \(OC 2.0 master branch\) [\#1640](https://github.com/opencart/opencart/issues/1640)
- Make model classes more extension friendly \(OC 2.0 master branch\) [\#1639](https://github.com/opencart/opencart/issues/1639)
- Need Help In Vqmod [\#1638](https://github.com/opencart/opencart/issues/1638)
- redundance code [\#1634](https://github.com/opencart/opencart/issues/1634)
- Json response header for API methods [\#1633](https://github.com/opencart/opencart/issues/1633)
- Missing validation for SEO keywords [\#1632](https://github.com/opencart/opencart/issues/1632)
- Bugs of apperance in admin mode [\#1630](https://github.com/opencart/opencart/issues/1630)
- Feature: option model to include "variations" in addition to "components" [\#1628](https://github.com/opencart/opencart/issues/1628)
- Product show NULL when no login for see prices [\#1627](https://github.com/opencart/opencart/issues/1627)
- PHP Warning: Cannot modify header information - headers already sent by [\#1626](https://github.com/opencart/opencart/issues/1626)
- Incorrect response code header in "catalog\controller\error\not\_found.php" [\#1620](https://github.com/opencart/opencart/issues/1620)
- opencart 2.0 install by mysql [\#1612](https://github.com/opencart/opencart/issues/1612)
- SQL\_MODE = 'MYSQL40' [\#1611](https://github.com/opencart/opencart/issues/1611)
- install/opencart.sql bug \(OC 2.0 master branch\) [\#1610](https://github.com/opencart/opencart/issues/1610)
- multi store issues [\#1609](https://github.com/opencart/opencart/issues/1609)
- Fatal error while deleting an order via admin panel [\#1605](https://github.com/opencart/opencart/issues/1605)
- admin/setting/store.php getStores\(\) [\#1604](https://github.com/opencart/opencart/issues/1604)
- $this-\>model\_account\_customer-\>getCustomers\(\) [\#1603](https://github.com/opencart/opencart/issues/1603)
- Contact page and SEO URLs [\#1602](https://github.com/opencart/opencart/issues/1602)
- page not found in review [\#1600](https://github.com/opencart/opencart/issues/1600)
- Product review bug \(OC 2.0 master branch\) [\#1595](https://github.com/opencart/opencart/issues/1595)
- Checkout, View Cart, and Shopping cart issue after latest commit [\#1593](https://github.com/opencart/opencart/issues/1593)
- Product Image Popup issue [\#1592](https://github.com/opencart/opencart/issues/1592)
- Googlebase Performance & Standards [\#1590](https://github.com/opencart/opencart/issues/1590)
- In addition to ticket \#1583 [\#1589](https://github.com/opencart/opencart/issues/1589)
- Product Compare issue on Master version [\#1587](https://github.com/opencart/opencart/issues/1587)
- Order comments never sent order email [\#1586](https://github.com/opencart/opencart/issues/1586)
- Vat and round issues [\#1585](https://github.com/opencart/opencart/issues/1585)
- Suggestion for featured module [\#1584](https://github.com/opencart/opencart/issues/1584)
- mini cart remove product issue [\#1582](https://github.com/opencart/opencart/issues/1582)
- Notifications link for "customer's waiting for approval" is incorrect [\#1578](https://github.com/opencart/opencart/issues/1578)
- Cart clear after checkout [\#1577](https://github.com/opencart/opencart/issues/1577)
- emails not sent to gift voucher recipients when the customer's cart contains regular products and gift certificates. [\#1574](https://github.com/opencart/opencart/issues/1574)
- HTML 5 Input Types [\#1572](https://github.com/opencart/opencart/issues/1572)
- Does it even make sense to report OC 2.0 bugs? [\#1571](https://github.com/opencart/opencart/issues/1571)
- No notification of return request [\#1570](https://github.com/opencart/opencart/issues/1570)
- Products with Quotes Cannot Be Deleted [\#1569](https://github.com/opencart/opencart/issues/1569)
- how to get current page url in opencart [\#1568](https://github.com/opencart/opencart/issues/1568)
- opencart.sql file, tables are not ordered alphabetically [\#1566](https://github.com/opencart/opencart/issues/1566)
- php echos, missing semi-colon after variable ! [\#1565](https://github.com/opencart/opencart/issues/1565)
- Last value in array with delimiter \(comma\) [\#1564](https://github.com/opencart/opencart/issues/1564)
- Typo shipping.php \(catalog\) [\#1554](https://github.com/opencart/opencart/issues/1554)
- Dashboard icons too big [\#1553](https://github.com/opencart/opencart/issues/1553)
- Incorrect index in guest checkout [\#1549](https://github.com/opencart/opencart/issues/1549)
- Wrong pagination link in account return [\#1548](https://github.com/opencart/opencart/issues/1548)
- catalog \> twice defined lang vars [\#1547](https://github.com/opencart/opencart/issues/1547)
- Wrong timepicker call \(recurring\_list.tpl\) [\#1546](https://github.com/opencart/opencart/issues/1546)
- Images missing [\#1545](https://github.com/opencart/opencart/issues/1545)
- Language \> wrong text [\#1544](https://github.com/opencart/opencart/issues/1544)
- var double defined [\#1543](https://github.com/opencart/opencart/issues/1543)
- Helptext in localisation/language [\#1542](https://github.com/opencart/opencart/issues/1542)
- Language files stored in ANSII [\#1541](https://github.com/opencart/opencart/issues/1541)
- \<text\_loading\> missing in catalog/controller/module/cart.php [\#1539](https://github.com/opencart/opencart/issues/1539)
- sale / order\_form.tpl \> hardcoded language value [\#1538](https://github.com/opencart/opencart/issues/1538)
- order.php \> undefined index [\#1537](https://github.com/opencart/opencart/issues/1537)
- checkout \> fatal error \(missing model\) [\#1536](https://github.com/opencart/opencart/issues/1536)
- Modules cart, currency, language & search not loaded \(displayed\) [\#1535](https://github.com/opencart/opencart/issues/1535)
- PHP Object Injection Vulnerability [\#1534](https://github.com/opencart/opencart/issues/1534)
- please be sure about clean code . \( javascript must be before body to speed up page [\#1528](https://github.com/opencart/opencart/issues/1528)
- where is title of pages ? [\#1527](https://github.com/opencart/opencart/issues/1527)
- catalog/category - page url parameter being added to the URL twice [\#1521](https://github.com/opencart/opencart/issues/1521)
- Registration issue [\#1520](https://github.com/opencart/opencart/issues/1520)
- Need some kind of menu item selected class adding [\#1519](https://github.com/opencart/opencart/issues/1519)
- include page url parameter in category save form [\#1518](https://github.com/opencart/opencart/issues/1518)
- suggestion [\#1517](https://github.com/opencart/opencart/issues/1517)
- Opencart search fast [\#1514](https://github.com/opencart/opencart/issues/1514)
- Ban IP Order Status ID [\#1511](https://github.com/opencart/opencart/issues/1511)
- Suggestion [\#1474](https://github.com/opencart/opencart/issues/1474)
- Upgrade Custom Modules to OC 2.0 [\#1473](https://github.com/opencart/opencart/issues/1473)
- Default Fedex Module ERROR [\#1469](https://github.com/opencart/opencart/issues/1469)
- install crashes [\#1467](https://github.com/opencart/opencart/issues/1467)
- Product Quantity Should Accept only integer values [\#1466](https://github.com/opencart/opencart/issues/1466)
- Massive flaw found in OC version X \(all versions\) - solution provided. [\#1464](https://github.com/opencart/opencart/issues/1464)
- mini shopping cart issue [\#1463](https://github.com/opencart/opencart/issues/1463)
- Checkout step 6 - confirm order error [\#1462](https://github.com/opencart/opencart/issues/1462)
- ISBN suggestion [\#1461](https://github.com/opencart/opencart/issues/1461)
- Various user/api bugs \(2.0 master branch\) [\#1458](https://github.com/opencart/opencart/issues/1458)
- Incorrect parent\_id and sort ordering in admin getCategories [\#1454](https://github.com/opencart/opencart/issues/1454)
- Error adding new address while in checkout. [\#1451](https://github.com/opencart/opencart/issues/1451)
- emailtemplates ugly font [\#1450](https://github.com/opencart/opencart/issues/1450)
- FlexSlider issue [\#1445](https://github.com/opencart/opencart/issues/1445)
- Add to cart bug [\#1443](https://github.com/opencart/opencart/issues/1443)
- Categories Issues - slow & limited \> poss. fixes! \(OC 1.5.6.3\) [\#1441](https://github.com/opencart/opencart/issues/1441)
- Bug in admin/controller/extension/installer.php \(OpenCart 2.0 master branch\) [\#1439](https://github.com/opencart/opencart/issues/1439)
- Generally poor on-page/on-site SEO control \(OC 1.5.6.3\) [\#1438](https://github.com/opencart/opencart/issues/1438)
- Accessibility \(OC 1.5.6.3\) [\#1437](https://github.com/opencart/opencart/issues/1437)
- Admin Login - can improve security \(OC 1.5.6.3\) [\#1436](https://github.com/opencart/opencart/issues/1436)
- SEO URLs result in incorrect pathing, lack of 404s \(OC 1.5.6.3\) [\#1435](https://github.com/opencart/opencart/issues/1435)
- Category Filters - Sort and NumItems \(OC 1.5.6.3\) [\#1434](https://github.com/opencart/opencart/issues/1434)
- Pagination - SEO : Canonical issue regarding page=1 \(OC 1.5.6.3\) + \[PATCHED\] [\#1433](https://github.com/opencart/opencart/issues/1433)
- Store settings issue [\#1432](https://github.com/opencart/opencart/issues/1432)
- opencart version 2 installation issue [\#1430](https://github.com/opencart/opencart/issues/1430)
- Language definitions missing in install/../step-3 [\#1429](https://github.com/opencart/opencart/issues/1429)
- Bug in system/modification.xml [\#1428](https://github.com/opencart/opencart/issues/1428)
- Notification menubar css issue [\#1427](https://github.com/opencart/opencart/issues/1427)
- Extension installer not working [\#1425](https://github.com/opencart/opencart/issues/1425)
- Call to a member function get\(\) on a non-object in /home/.../public\_html/.../admin/index.php on line 84 [\#1424](https://github.com/opencart/opencart/issues/1424)
- Bug in system/engine/controller.php [\#1423](https://github.com/opencart/opencart/issues/1423)
- Bug in catalog/controller/payment/pp\_express.php [\#1422](https://github.com/opencart/opencart/issues/1422)
- Fatal error: Class 'Controllercheckoutcheckout' not found in vq2-system\_engine\_front.php on line 39 [\#1421](https://github.com/opencart/opencart/issues/1421)
- Admin Page [\#1415](https://github.com/opencart/opencart/issues/1415)
- Bug in catalog/model/checkout/order.php [\#1414](https://github.com/opencart/opencart/issues/1414)
- The new version opencart gives "internal error" [\#1406](https://github.com/opencart/opencart/issues/1406)
- Undefined variable: directory in system\library\language.php on line 8 [\#1405](https://github.com/opencart/opencart/issues/1405)
- Please reopen \#1393 Firefox has a problem [\#1404](https://github.com/opencart/opencart/issues/1404)
- OpenCart modifies globals in the Request object [\#1402](https://github.com/opencart/opencart/issues/1402)
- Ampersand in company name [\#1399](https://github.com/opencart/opencart/issues/1399)
- Bug in admin/controller/extension/modification.php [\#1398](https://github.com/opencart/opencart/issues/1398)
- OpenCart 2.0 still Slow. F Grade on GTMetrix [\#1397](https://github.com/opencart/opencart/issues/1397)
- error after add robots file in admin menu [\#1396](https://github.com/opencart/opencart/issues/1396)
- error after add robot at the admin [\#1395](https://github.com/opencart/opencart/issues/1395)
- \<Div id="container"\> closing tag is NOT a \</div\> tag [\#1394](https://github.com/opencart/opencart/issues/1394)
- Admin Inforamtion pages Issues cannot update or add new FIREFOX [\#1393](https://github.com/opencart/opencart/issues/1393)
- Language fall-back removed\(?\) [\#1390](https://github.com/opencart/opencart/issues/1390)
- CKeditor [\#1383](https://github.com/opencart/opencart/issues/1383)
- Welcome module \(discuss\) [\#1382](https://github.com/opencart/opencart/issues/1382)
- Editing Store [\#1380](https://github.com/opencart/opencart/issues/1380)
- HEAD content rendered in BODY area [\#1378](https://github.com/opencart/opencart/issues/1378)
- ckeditor [\#1375](https://github.com/opencart/opencart/issues/1375)
- getTotalOrders function wrong SQL field [\#1374](https://github.com/opencart/opencart/issues/1374)
- Admin: edit order product price change after offer expire \(special or discount\) [\#1373](https://github.com/opencart/opencart/issues/1373)
- Change: settitle \>\> setTitle \(to work replace in VQMOD\) [\#1372](https://github.com/opencart/opencart/issues/1372)
- Missing 'o' in ... getTotalOrders [\#1371](https://github.com/opencart/opencart/issues/1371)
- opencart 1.5.6.4 version still shows rc [\#1370](https://github.com/opencart/opencart/issues/1370)
- Menu Builder for OC V2.0? [\#1367](https://github.com/opencart/opencart/issues/1367)
- Mail class, send email error handler [\#1365](https://github.com/opencart/opencart/issues/1365)
- Tax Report Shows Wrong Total [\#1338](https://github.com/opencart/opencart/issues/1338)
- Looking for Documentation on Modification System! [\#1336](https://github.com/opencart/opencart/issues/1336)
- Zones are not loading while adding customer address from admin. [\#1295](https://github.com/opencart/opencart/issues/1295)
- Error while creating new order from Admin [\#1291](https://github.com/opencart/opencart/issues/1291)
- Category pagination error [\#1287](https://github.com/opencart/opencart/issues/1287)
- Responsive Menu Not Working in Mobile Version [\#1158](https://github.com/opencart/opencart/issues/1158)
**Merged pull requests:**
- New My Account Dropdown Menu in Top Links [\#1677](https://github.com/opencart/opencart/pull/1677) ([eka7a](https://github.com/eka7a))
- Update jQuery v2.1.1 and more [\#1676](https://github.com/opencart/opencart/pull/1676) ([eka7a](https://github.com/eka7a))
- Added user group permission check to product viewed report reset [\#1675](https://github.com/opencart/opencart/pull/1675) ([eka7a](https://github.com/eka7a))
- Form layout incorrect [\#1673](https://github.com/opencart/opencart/pull/1673) ([eka7a](https://github.com/eka7a))
- Validation message appears even after selecting option for some items [\#1672](https://github.com/opencart/opencart/pull/1672) ([eka7a](https://github.com/eka7a))
- Fixed Ajax URL on Shopping Cart [\#1671](https://github.com/opencart/opencart/pull/1671) ([eka7a](https://github.com/eka7a))
- Duplicate oc\_event table in opencart.sql [\#1670](https://github.com/opencart/opencart/pull/1670) ([eka7a](https://github.com/eka7a))
- Fixed dropdowns on mobile, Flex slider arrows and alert labels in the admin area [\#1665](https://github.com/opencart/opencart/pull/1665) ([JamesAtkinson](https://github.com/JamesAtkinson))
- When adding new store, copy to new store the default layout route [\#1654](https://github.com/opencart/opencart/pull/1654) ([eka7a](https://github.com/eka7a))
- fix typo [\#1651](https://github.com/opencart/opencart/pull/1651) ([Jayin](https://github.com/Jayin))
- fix : unable to post the data of a product review correctly. [\#1645](https://github.com/opencart/opencart/pull/1645) ([Jayin](https://github.com/Jayin))
- Removing "HDRBORDERCOLOR" and "HDRBACKCOLOR" as these are now deprecated... [\#1636](https://github.com/opencart/opencart/pull/1636) ([davidteal](https://github.com/davidteal))
- Fixed undefined variable:'recurring' [\#1629](https://github.com/opencart/opencart/pull/1629) ([leunggamciu](https://github.com/leunggamciu))
- Changed email to e-mail and … [\#1624](https://github.com/opencart/opencart/pull/1624) ([Urs-Bruelhart](https://github.com/Urs-Bruelhart))
- Changed email to e-mail [\#1623](https://github.com/opencart/opencart/pull/1623) ([Urs-Bruelhart](https://github.com/Urs-Bruelhart))
- Changed email to e-mail [\#1622](https://github.com/opencart/opencart/pull/1622) ([Urs-Bruelhart](https://github.com/Urs-Bruelhart))
- Changed email to e-mail [\#1621](https://github.com/opencart/opencart/pull/1621) ([Urs-Bruelhart](https://github.com/Urs-Bruelhart))
- do not show errors suppressed with @ [\#1619](https://github.com/opencart/opencart/pull/1619) ([cornernote](https://github.com/cornernote))
- Deleted white spaces [\#1618](https://github.com/opencart/opencart/pull/1618) ([Urs-Bruelhart](https://github.com/Urs-Bruelhart))
- Deleted white spaces [\#1617](https://github.com/opencart/opencart/pull/1617) ([Urs-Bruelhart](https://github.com/Urs-Bruelhart))
- Changed email to e-mail [\#1616](https://github.com/opencart/opencart/pull/1616) ([Urs-Bruelhart](https://github.com/Urs-Bruelhart))
- Changed email to e-mail [\#1615](https://github.com/opencart/opencart/pull/1615) ([Urs-Bruelhart](https://github.com/Urs-Bruelhart))
- Changed email to e-mail [\#1614](https://github.com/opencart/opencart/pull/1614) ([Urs-Bruelhart](https://github.com/Urs-Bruelhart))
- Changed email to e-mail [\#1613](https://github.com/opencart/opencart/pull/1613) ([Urs-Bruelhart](https://github.com/Urs-Bruelhart))
- duplicated code same on line 573 [\#1608](https://github.com/opencart/opencart/pull/1608) ([ghost](https://github.com/ghost))
- Some fixes in default config values [\#1606](https://github.com/opencart/opencart/pull/1606) ([tjomamokrenko](https://github.com/tjomamokrenko))
- Changed email to e-mail [\#1598](https://github.com/opencart/opencart/pull/1598) ([Urs-Bruelhart](https://github.com/Urs-Bruelhart))
- Changed email to e-mail [\#1597](https://github.com/opencart/opencart/pull/1597) ([Urs-Bruelhart](https://github.com/Urs-Bruelhart))
- Changed email to e-mail [\#1596](https://github.com/opencart/opencart/pull/1596) ([Urs-Bruelhart](https://github.com/Urs-Bruelhart))
- Typo error in date\_modified field in api table [\#1581](https://github.com/opencart/opencart/pull/1581) ([psramkumar](https://github.com/psramkumar))
- Fixed Alerts Filter Link [\#1576](https://github.com/opencart/opencart/pull/1576) ([eka7a](https://github.com/eka7a))
- Fix several typos [\#1563](https://github.com/opencart/opencart/pull/1563) ([Milow](https://github.com/Milow))
- Update english.php [\#1562](https://github.com/opencart/opencart/pull/1562) ([osworx](https://github.com/osworx))
- Update header.tpl [\#1558](https://github.com/opencart/opencart/pull/1558) ([osworx](https://github.com/osworx))
- Added Meta Tag Keyword on Homepage [\#1552](https://github.com/opencart/opencart/pull/1552) ([eka7a](https://github.com/eka7a))
- V1.5.6.x "Incorrect file type" when uploading [\#1550](https://github.com/opencart/opencart/pull/1550) ([gob33](https://github.com/gob33))
- Fixed captchas. [\#1533](https://github.com/opencart/opencart/pull/1533) ([Martynas-P](https://github.com/Martynas-P))
- Fixed Captchas [\#1532](https://github.com/opencart/opencart/pull/1532) ([Martynas-P](https://github.com/Martynas-P))
- Selenium test for Amazon Payments [\#1526](https://github.com/opencart/opencart/pull/1526) ([Martynas-P](https://github.com/Martynas-P))
- Selenium tests for Amazon Payments [\#1525](https://github.com/opencart/opencart/pull/1525) ([Martynas-P](https://github.com/Martynas-P))
- SQL Fix [\#1524](https://github.com/opencart/opencart/pull/1524) ([Martynas-P](https://github.com/Martynas-P))
- Added filtering by order's channel to OpenBay Pro's Bulk Order Update tool [\#1523](https://github.com/opencart/opencart/pull/1523) ([Martynas-P](https://github.com/Martynas-P))
- Bugfix on the cart page; More selenium tests [\#1489](https://github.com/opencart/opencart/pull/1489) ([Martynas-P](https://github.com/Martynas-P))
- Fixed the usage of ternary operator in Amazon US. [\#1472](https://github.com/opencart/opencart/pull/1472) ([Martynas-P](https://github.com/Martynas-P))
- Added Selenium tests [\#1471](https://github.com/opencart/opencart/pull/1471) ([Martynas-P](https://github.com/Martynas-P))
- fixes installation crashes on step 3 [\#1468](https://github.com/opencart/opencart/pull/1468) ([ghost](https://github.com/ghost))
- word typo [\#1465](https://github.com/opencart/opencart/pull/1465) ([Equotix](https://github.com/Equotix))
- Remove stray s from td tag [\#1460](https://github.com/opencart/opencart/pull/1460) ([thesjg](https://github.com/thesjg))
- Added blocking calls to the File driver. [\#1459](https://github.com/opencart/opencart/pull/1459) ([Martynas-P](https://github.com/Martynas-P))
- Update install SQL script [\#1449](https://github.com/opencart/opencart/pull/1449) ([hellaslubo](https://github.com/hellaslubo))
- Fixing the usage of ternary operator in model which caused Empty Query error [\#1448](https://github.com/opencart/opencart/pull/1448) ([Martynas-P](https://github.com/Martynas-P))
- Fix for the cache's file driver - added some protections to race conditions. [\#1446](https://github.com/opencart/opencart/pull/1446) ([Martynas-P](https://github.com/Martynas-P))
- Whitespace standardization in /system [\#1418](https://github.com/opencart/opencart/pull/1418) ([opencarthelp](https://github.com/opencarthelp))
- Whitespace standardization in catalog controller [\#1416](https://github.com/opencart/opencart/pull/1416) ([opencarthelp](https://github.com/opencarthelp))
- Added Amazon Payments. [\#1413](https://github.com/opencart/opencart/pull/1413) ([Martynas-P](https://github.com/Martynas-P))
- Updated PayPal express' button [\#1411](https://github.com/opencart/opencart/pull/1411) ([Martynas-P](https://github.com/Martynas-P))
- Ported PP Express' changes from 1.5.6 to 2.0 [\#1410](https://github.com/opencart/opencart/pull/1410) ([Martynas-P](https://github.com/Martynas-P))
- Trailing whitespace removed in /admin php files [\#1409](https://github.com/opencart/opencart/pull/1409) ([opencarthelp](https://github.com/opencarthelp))
- Update PayPal's and Amazon Payments' buttons [\#1408](https://github.com/opencart/opencart/pull/1408) ([Martynas-P](https://github.com/Martynas-P))
- Trailing whitespace removed in /catalog php files [\#1407](https://github.com/opencart/opencart/pull/1407) ([opencarthelp](https://github.com/opencarthelp))
- More tests [\#1401](https://github.com/opencart/opencart/pull/1401) ([Martynas-P](https://github.com/Martynas-P))
- moved unit tests, added additional ones [\#1400](https://github.com/opencart/opencart/pull/1400) ([Martynas-P](https://github.com/Martynas-P))
- cleaned up the readme.md in tests folder. [\#1392](https://github.com/opencart/opencart/pull/1392) ([Martynas-P](https://github.com/Martynas-P))
- Fix for Amazon Payments when cart has products with different tax rates [\#1389](https://github.com/opencart/opencart/pull/1389) ([Martynas-P](https://github.com/Martynas-P))
- Fixed issue with tax being passed as product when multiple tax rates are used [\#1388](https://github.com/opencart/opencart/pull/1388) ([Martynas-P](https://github.com/Martynas-P))
- http\_server followed by a trailing slash [\#1301](https://github.com/opencart/opencart/pull/1301) ([NanoCaiordo](https://github.com/NanoCaiordo))
## [1.5.6.4](https://github.com/opencart/opencart/tree/1.5.6.4) (2014-04-24)
[Full Changelog](https://github.com/opencart/opencart/compare/1.5.6.3...1.5.6.4)
**Closed issues:**
- multi-store problem [\#1363](https://github.com/opencart/opencart/issues/1363)
- Email by product [\#1362](https://github.com/opencart/opencart/issues/1362)
- Missing profile\_id in call to $this-\>cart-\>add [\#1357](https://github.com/opencart/opencart/issues/1357)
- Backup not displaying tables [\#1355](https://github.com/opencart/opencart/issues/1355)
- Not able to upload image in 1.5.6.3 after review \#1345 [\#1354](https://github.com/opencart/opencart/issues/1354)
- Product Discounts in library/cart [\#1352](https://github.com/opencart/opencart/issues/1352)
- Warning: Incorrect file type! [\#1351](https://github.com/opencart/opencart/issues/1351)
- PHP exit-parser tag should be omitted in pure php classes and files [\#1349](https://github.com/opencart/opencart/issues/1349)
- SOLVED: Installing Opencart 1.5.6.3 fails \(using Windows/IIS\) and PHP 5.3.13 [\#1347](https://github.com/opencart/opencart/issues/1347)
- 96 DPI jpeg images return error\_filetype when uploading through Image Manager [\#1345](https://github.com/opencart/opencart/issues/1345)
- Update [\#1344](https://github.com/opencart/opencart/issues/1344)
- Function updateCurrencies - performance fix [\#1230](https://github.com/opencart/opencart/issues/1230)
**Merged pull requests:**
- utf8\_substr fix [\#1360](https://github.com/opencart/opencart/pull/1360) ([opencarthelp](https://github.com/opencarthelp))
- utf8\_substr fix [\#1359](https://github.com/opencart/opencart/pull/1359) ([opencarthelp](https://github.com/opencarthelp))
- Fixed strlen character [\#1358](https://github.com/opencart/opencart/pull/1358) ([eka7a](https://github.com/eka7a))
- Added separate log message for total paid mismatch [\#1356](https://github.com/opencart/opencart/pull/1356) ([Turnerj](https://github.com/Turnerj))
- Unify button style in some admin payment pages. [\#1350](https://github.com/opencart/opencart/pull/1350) ([hellaslubo](https://github.com/hellaslubo))
- Escape special chars in product name and model [\#1348](https://github.com/opencart/opencart/pull/1348) ([bthorben](https://github.com/bthorben))
## [1.5.6.3](https://github.com/opencart/opencart/tree/1.5.6.3) (2014-04-15)
[Full Changelog](https://github.com/opencart/opencart/compare/1.5.6.2...1.5.6.3)
**Closed issues:**
- Product generator - Options Size and Color [\#1342](https://github.com/opencart/opencart/issues/1342)
- Make a setting to hide "Region / State" in checkout/admin [\#1341](https://github.com/opencart/opencart/issues/1341)
- Image Manager Display blank image 1.5.6.2 [\#1335](https://github.com/opencart/opencart/issues/1335)
- After uploading one image the others are broken. [\#1334](https://github.com/opencart/opencart/issues/1334)
- Images not visible with image manager [\#1332](https://github.com/opencart/opencart/issues/1332)
- Critical error on inserting too long meta description on product causes undesireable delete. [\#1331](https://github.com/opencart/opencart/issues/1331)
- product photo map problem [\#1330](https://github.com/opencart/opencart/issues/1330)
- Update Install script version from V1.5.X to V2.0 [\#1325](https://github.com/opencart/opencart/issues/1325)
- Undefined variable: order\_info [\#1307](https://github.com/opencart/opencart/issues/1307)
- Recurring profile produces error on cart page. [\#1297](https://github.com/opencart/opencart/issues/1297)
- Paypal Express recurring payment issue for $1000 and more [\#1276](https://github.com/opencart/opencart/issues/1276)
- Improvement suggestion: allow arrays to be written to the log [\#1256](https://github.com/opencart/opencart/issues/1256)
- Make Modification-class more similar to VQmod [\#1183](https://github.com/opencart/opencart/issues/1183)
**Merged pull requests:**
- Fix smtp email sending bug. [\#1340](https://github.com/opencart/opencart/pull/1340) ([hellaslubo](https://github.com/hellaslubo))
- Change Google fonts link to support both http and https. [\#1337](https://github.com/opencart/opencart/pull/1337) ([hellaslubo](https://github.com/hellaslubo))
- Moved Function Tool/Captcha [\#1333](https://github.com/opencart/opencart/pull/1333) ([eka7a](https://github.com/eka7a))
- Fixed if used information page by return terms, show warning message. [\#1328](https://github.com/opencart/opencart/pull/1328) ([eka7a](https://github.com/eka7a))
## [1.5.6.2](https://github.com/opencart/opencart/tree/1.5.6.2) (2014-04-10)
[Full Changelog](https://github.com/opencart/opencart/compare/1.5.6.1...1.5.6.2)
**Closed issues:**
- migrate to "paypal in-context checkout" ? [\#1326](https://github.com/opencart/opencart/issues/1326)
- Wrong utf8\_substr default param usage in filemanager.php [\#1322](https://github.com/opencart/opencart/issues/1322)
- image manager not recognising file types. [\#1321](https://github.com/opencart/opencart/issues/1321)
- Cache returns stale data once before purge [\#1320](https://github.com/opencart/opencart/issues/1320)
- Admin/sale/new customer Syntax error, unrecognized expression [\#1318](https://github.com/opencart/opencart/issues/1318)
- Fix utf8\_substr\(\) at mbstring [\#1316](https://github.com/opencart/opencart/issues/1316)
- OpenCart \<= 1.5.6.1 SQL Injection [\#1312](https://github.com/opencart/opencart/issues/1312)
- Image cache files not saving as correct filename [\#1310](https://github.com/opencart/opencart/issues/1310)
- pagenation doesn't work [\#1309](https://github.com/opencart/opencart/issues/1309)
- Copyright issue [\#1308](https://github.com/opencart/opencart/issues/1308)
- product images folders are gone [\#1303](https://github.com/opencart/opencart/issues/1303)
- Performance bottle necks on homepage [\#1300](https://github.com/opencart/opencart/issues/1300)
- Coupon and Gift voucher error. [\#1299](https://github.com/opencart/opencart/issues/1299)
- Extra header on Cash on delivery payment method. [\#1298](https://github.com/opencart/opencart/issues/1298)
- Custom field image not working, producing error. [\#1296](https://github.com/opencart/opencart/issues/1296)
- 'Address 2' should also appear in 'Choose Address' \(drop down\) [\#1294](https://github.com/opencart/opencart/issues/1294)
- sitemap error [\#1293](https://github.com/opencart/opencart/issues/1293)
- Delete is not working in admin [\#1292](https://github.com/opencart/opencart/issues/1292)
- Change SEO Keyword field label to SEO URL [\#1290](https://github.com/opencart/opencart/issues/1290)
- SQL Mistakes [\#1289](https://github.com/opencart/opencart/issues/1289)
- Duplicated method [\#1288](https://github.com/opencart/opencart/issues/1288)
- damianb [\#1286](https://github.com/opencart/opencart/issues/1286)
- custom\_field\_location problem [\#1285](https://github.com/opencart/opencart/issues/1285)
- Broken mode of operation used for encryption [\#1279](https://github.com/opencart/opencart/issues/1279)
- In admin model the public function editOrder restock twice. [\#1278](https://github.com/opencart/opencart/issues/1278)
- Internal Server Error 500 occurs intermittently [\#1277](https://github.com/opencart/opencart/issues/1277)
- Free shipping applied when total amount is less than free shipping limit [\#1274](https://github.com/opencart/opencart/issues/1274)
- Removing orders [\#1271](https://github.com/opencart/opencart/issues/1271)
- Opencart's password hashing is vulnerable [\#1269](https://github.com/opencart/opencart/issues/1269)
- nochex payment module [\#1266](https://github.com/opencart/opencart/issues/1266)
- My Opencart 1.4.9 got a Description no display issue \(ADMIN \) [\#1263](https://github.com/opencart/opencart/issues/1263)
- bug in head payment/pp\_standard.php [\#1262](https://github.com/opencart/opencart/issues/1262)
- filemanger index issue \(current master code on git\) [\#1260](https://github.com/opencart/opencart/issues/1260)
- Delete, my mistake! [\#1257](https://github.com/opencart/opencart/issues/1257)
- openbay pro [\#1254](https://github.com/opencart/opencart/issues/1254)
- "Website" field missing in Affiliate form under Admin [\#1250](https://github.com/opencart/opencart/issues/1250)
- error\_log\(\) does not handle the custom error; [\#1249](https://github.com/opencart/opencart/issues/1249)
- DIR\_MODIFICATION not defined in install/index.php [\#1248](https://github.com/opencart/opencart/issues/1248)
- bug in opencart-1.5.6.1 /catalog/model/account/customer.php [\#1247](https://github.com/opencart/opencart/issues/1247)
- No horizontal scrollbar [\#1246](https://github.com/opencart/opencart/issues/1246)
- Suggestion to improve module development [\#1242](https://github.com/opencart/opencart/issues/1242)
- Change log between 1.5.4.1 and 1.5.5.1 [\#1240](https://github.com/opencart/opencart/issues/1240)
- Guest billing details data populated in registration form [\#1239](https://github.com/opencart/opencart/issues/1239)
- Admin Category parrent\_id [\#1238](https://github.com/opencart/opencart/issues/1238)
- new opencart version homepage minicart problem [\#1237](https://github.com/opencart/opencart/issues/1237)
- admin area filter list problem [\#1236](https://github.com/opencart/opencart/issues/1236)
- Create and account - syntax error [\#1234](https://github.com/opencart/opencart/issues/1234)
- Fatal error: Call to a member function isLogged\(\) on a non-object in /home/semprede/public\_html/teste/vqmod/vqcache/vq2-admin\_controller\_common\_header.php on line 126 [\#1228](https://github.com/opencart/opencart/issues/1228)
- Sort Categories & Products Bug in Open Cart 1.5.6.1 [\#1227](https://github.com/opencart/opencart/issues/1227)
- Modification xml standart [\#1224](https://github.com/opencart/opencart/issues/1224)
- Ckeditor and jquery adapter [\#1222](https://github.com/opencart/opencart/issues/1222)
- Dashboard Statistics Graph [\#1218](https://github.com/opencart/opencart/issues/1218)
- Removing order from admin menu /orders [\#1217](https://github.com/opencart/opencart/issues/1217)
- Bug in modification.xml [\#1214](https://github.com/opencart/opencart/issues/1214)
- Search engine on admin panel [\#1213](https://github.com/opencart/opencart/issues/1213)
- I am not able to increase image upload size in opencart 1.5.5.6 [\#1212](https://github.com/opencart/opencart/issues/1212)
- remove duble placeholder, set product , category title or meta\_title [\#1208](https://github.com/opencart/opencart/issues/1208)
- remove duble placeholder, set product , category title or meta\_title [\#1207](https://github.com/opencart/opencart/issues/1207)
- Trying to get property of non-object in /hermes/bosoraweb034/b9/ipg. [\#1205](https://github.com/opencart/opencart/issues/1205)
- I am using lexus mega shop theme by pavtheme [\#1203](https://github.com/opencart/opencart/issues/1203)
- fixed a typeo on last commit [\#1200](https://github.com/opencart/opencart/issues/1200)
- Bug in admin/controller/extension/modification.php [\#1198](https://github.com/opencart/opencart/issues/1198)
- Bug in admin/model/setting/modification.php [\#1197](https://github.com/opencart/opencart/issues/1197)
- Bug in admin/controller/extension/installer.php [\#1196](https://github.com/opencart/opencart/issues/1196)
- Default Store Image Size 240x180 in admin setting [\#1195](https://github.com/opencart/opencart/issues/1195)
- add funds module [\#1194](https://github.com/opencart/opencart/issues/1194)
- Date, Time picker [\#1190](https://github.com/opencart/opencart/issues/1190)
- Cart module header [\#1189](https://github.com/opencart/opencart/issues/1189)
- Notice: Error: Table 'master.oc\_custom\_field\_location' doesn't exist [\#1188](https://github.com/opencart/opencart/issues/1188)
- Error while creating manual invoice [\#1187](https://github.com/opencart/opencart/issues/1187)
- Main picture display method [\#1184](https://github.com/opencart/opencart/issues/1184)
- mysqli issue [\#1182](https://github.com/opencart/opencart/issues/1182)
- missing database table after fresh install of 2.0? [\#1181](https://github.com/opencart/opencart/issues/1181)
- Cart Quantity [\#1180](https://github.com/opencart/opencart/issues/1180)
- Error in filter date / admin order [\#1177](https://github.com/opencart/opencart/issues/1177)
- Remove Resize Issue [\#1176](https://github.com/opencart/opencart/issues/1176)
- Shopping cart doesn't update when adding items [\#1170](https://github.com/opencart/opencart/issues/1170)
- Send emails customers who have ordered products in the list [\#1169](https://github.com/opencart/opencart/issues/1169)
- tab\_marketplace\_left visible in detail Product display on admin [\#1167](https://github.com/opencart/opencart/issues/1167)
- Using keyword \(aka seo tag or meta tag\) in link for information, category, product and manufacturer breaks navigation in multi store [\#1166](https://github.com/opencart/opencart/issues/1166)
- received Paypal payments but order didnt get updated to opencart [\#1165](https://github.com/opencart/opencart/issues/1165)
- Problem in opencart admin to load product option values [\#1164](https://github.com/opencart/opencart/issues/1164)
- Click "Send" button nothing happen [\#1163](https://github.com/opencart/opencart/issues/1163)
- Product Stock Problems - Change With No Reason [\#1162](https://github.com/opencart/opencart/issues/1162)
- Opencart Checkout Button not working [\#1157](https://github.com/opencart/opencart/issues/1157)
- Javascript Error when trying to add Product's Profile [\#1156](https://github.com/opencart/opencart/issues/1156)
- Admin Backup/Restore error [\#1155](https://github.com/opencart/opencart/issues/1155)
- is there a Catalog Options Variable limit? [\#1154](https://github.com/opencart/opencart/issues/1154)
- PayPal Express not sending State. [\#1152](https://github.com/opencart/opencart/issues/1152)
- Klarna Invoice Payment Integration Server URL typo [\#1150](https://github.com/opencart/opencart/issues/1150)
- Fatal Error [\#1147](https://github.com/opencart/opencart/issues/1147)
- New Registrations and Order Alert Emails not workign [\#1141](https://github.com/opencart/opencart/issues/1141)
- Install error in mysql strict mode [\#1140](https://github.com/opencart/opencart/issues/1140)
- Creating sub-category it has some issue in opencart [\#1138](https://github.com/opencart/opencart/issues/1138)
- Pictures not showing up in admin Version 1.5.6 [\#1136](https://github.com/opencart/opencart/issues/1136)
- Bug with mod\_ruid2 [\#1135](https://github.com/opencart/opencart/issues/1135)
- v2.0 - Fix for Magnific.js product image popup [\#1105](https://github.com/opencart/opencart/issues/1105)
- Trying to reorder products that no longer exist in the shopping cart system! [\#1096](https://github.com/opencart/opencart/issues/1096)
- order editing an credit, reward points, coupons [\#372](https://github.com/opencart/opencart/issues/372)
**Merged pull requests:**
- OpenBay Pro update to latest version for OpenCart 1.5.6.2 release [\#1327](https://github.com/opencart/opencart/pull/1327) ([jamesallsup](https://github.com/jamesallsup))
- Fixed customer\_reward table name and more [\#1323](https://github.com/opencart/opencart/pull/1323) ([eka7a](https://github.com/eka7a))
- Fixed Authorizenet AIM payment\_address\_2 [\#1317](https://github.com/opencart/opencart/pull/1317) ([eka7a](https://github.com/eka7a))
- Affiliate c.lastname -\> a.lastname on affiliate activities report. [\#1315](https://github.com/opencart/opencart/pull/1315) ([eka7a](https://github.com/eka7a))
- fix mbstring wrapper utf8\_substr\(\) mistake, and update the utf8\_\* helper... [\#1314](https://github.com/opencart/opencart/pull/1314) ([hellaslubo](https://github.com/hellaslubo))
- fix $length default in utf8\_substr functions, set iconv internal encoding [\#1313](https://github.com/opencart/opencart/pull/1313) ([joshhartman](https://github.com/joshhartman))
- Fixed form ID name [\#1311](https://github.com/opencart/opencart/pull/1311) ([eka7a](https://github.com/eka7a))
- Update version number [\#1306](https://github.com/opencart/opencart/pull/1306) ([eka7a](https://github.com/eka7a))
- sum sold quantities in bestseller products [\#1265](https://github.com/opencart/opencart/pull/1265) ([pine3ree](https://github.com/pine3ree))
- Fix for SMTP TLS based Auth [\#1258](https://github.com/opencart/opencart/pull/1258) ([madhurjain](https://github.com/madhurjain))
- Fixes route URLs. [\#1253](https://github.com/opencart/opencart/pull/1253) ([commentics](https://github.com/commentics))
- Spelling and grammar fixes. [\#1252](https://github.com/opencart/opencart/pull/1252) ([commentics](https://github.com/commentics))
- Changed mysqli to fetch\_assoc\(\) [\#1229](https://github.com/opencart/opencart/pull/1229) ([sifRAWR](https://github.com/sifRAWR))
- Update to opencart.sql [\#1226](https://github.com/opencart/opencart/pull/1226) ([anony253](https://github.com/anony253))
- Optimised to open and close file once, rather than each write. [\#1223](https://github.com/opencart/opencart/pull/1223) ([justinvelluppillai](https://github.com/justinvelluppillai))
- Fix cli\_installer.php [\#1209](https://github.com/opencart/opencart/pull/1209) ([ball6847](https://github.com/ball6847))
- opencar.sql - fixed wrong charset - line 1377 [\#1204](https://github.com/opencart/opencart/pull/1204) ([chimeraha](https://github.com/chimeraha))
- changed product\_id index to category\_id [\#1201](https://github.com/opencart/opencart/pull/1201) ([CZechBoY](https://github.com/CZechBoY))
- Fixed PayPal's transaction search. [\#1192](https://github.com/opencart/opencart/pull/1192) ([martynas-wm](https://github.com/martynas-wm))
- Update failure.php [\#1191](https://github.com/opencart/opencart/pull/1191) ([DS-Matt](https://github.com/DS-Matt))
- Changed old mysql to new database \(accepts multiple db drivers\) [\#1161](https://github.com/opencart/opencart/pull/1161) ([justinvelluppillai](https://github.com/justinvelluppillai))
- Update shipping.php [\#1159](https://github.com/opencart/opencart/pull/1159) ([OpenCartAddons](https://github.com/OpenCartAddons))
- Update opencart.sql [\#1143](https://github.com/opencart/opencart/pull/1143) ([screamingjungle](https://github.com/screamingjungle))
## [1.5.6.1](https://github.com/opencart/opencart/tree/1.5.6.1) (2014-01-09)
[Full Changelog](https://github.com/opencart/opencart/compare/1.5.6...1.5.6.1)
**Closed issues:**
- Fatal error: Call to undefined method ControllerSaleOrder::hasAction\(\) [\#1132](https://github.com/opencart/opencart/issues/1132)
- Product Price / VAT issue [\#1118](https://github.com/opencart/opencart/issues/1118)
- Modules not loading on product page v1.5.6.1 [\#1117](https://github.com/opencart/opencart/issues/1117)
- Unable to access Admin panel due to 404 error [\#1116](https://github.com/opencart/opencart/issues/1116)
- Terrible mark-up [\#1115](https://github.com/opencart/opencart/issues/1115)
- Please make controller classes extension friendly again! [\#1109](https://github.com/opencart/opencart/issues/1109)
- v1.5.6.1 - error in "install/model/upgrade.php" on line 353 [\#1108](https://github.com/opencart/opencart/issues/1108)
- install one module have show 2 layer inside website.... [\#1107](https://github.com/opencart/opencart/issues/1107)
- Make Loader class a proper factory class [\#1106](https://github.com/opencart/opencart/issues/1106)
- v2.0 - "Welcome back admin" message comes back when clicking Home. [\#1104](https://github.com/opencart/opencart/issues/1104)
- v2.0 - AddThis script appends tracking code to product page url [\#1103](https://github.com/opencart/opencart/issues/1103)
- PHP Template: Alternative syntax for control structures [\#1102](https://github.com/opencart/opencart/issues/1102)
- twitter bootstrap ie8 support [\#1100](https://github.com/opencart/opencart/issues/1100)
- better error variables \(kiss principle\) [\#1099](https://github.com/opencart/opencart/issues/1099)
- Autocomplete not working when i try to link the product with subcategory in Opencart 1.5.6 [\#1098](https://github.com/opencart/opencart/issues/1098)
- Deprecated: mysql\_connect\(\): The mysql extension is deprecated and will be removed in the future: use mysqli or PDO instead in C:\xampp\htdocs\opencart\system\database\mysql.php on line 6 [\#1097](https://github.com/opencart/opencart/issues/1097)
- paypal duplicate transaction protection. [\#1094](https://github.com/opencart/opencart/issues/1094)
- urlencode problem with SEO URL converting plus sign [\#1093](https://github.com/opencart/opencart/issues/1093)
- order total sums up wrong after editing order with options [\#1090](https://github.com/opencart/opencart/issues/1090)
- getTotalCommission issue not showing the right total if the date range is set [\#1088](https://github.com/opencart/opencart/issues/1088)
- OpenCart Reverts to USD [\#1087](https://github.com/opencart/opencart/issues/1087)
- Apostrophe in Customer Group name breaks javascript on Admin Product form [\#1084](https://github.com/opencart/opencart/issues/1084)
- Make zones/regions optional per country [\#1079](https://github.com/opencart/opencart/issues/1079)
- Adding new theme [\#1077](https://github.com/opencart/opencart/issues/1077)
- Disabled currencies can still be used [\#1074](https://github.com/opencart/opencart/issues/1074)
- Duplicate key in SQL Install script [\#1072](https://github.com/opencart/opencart/issues/1072)
- datepicker in oc v2 [\#1069](https://github.com/opencart/opencart/issues/1069)
- Dashboard not sending Emails [\#1068](https://github.com/opencart/opencart/issues/1068)
- Update Product Error [\#1065](https://github.com/opencart/opencart/issues/1065)
- Rating can be any number [\#1064](https://github.com/opencart/opencart/issues/1064)
- Shipping methods not flexible, need serious overhaul [\#1062](https://github.com/opencart/opencart/issues/1062)
- don't loop the class [\#1061](https://github.com/opencart/opencart/issues/1061)
- Profile price is not reflecting on product page, cart, or checkout. [\#1060](https://github.com/opencart/opencart/issues/1060)
- Recurring profiles cause payment options to not load [\#1059](https://github.com/opencart/opencart/issues/1059)
- Checkout syntax error [\#1058](https://github.com/opencart/opencart/issues/1058)
- Default Zones for Latvia [\#1055](https://github.com/opencart/opencart/issues/1055)
- Checkout/Success warning if session variable not set [\#1054](https://github.com/opencart/opencart/issues/1054)
- Wrong total is calculated when non default currency is selected [\#1053](https://github.com/opencart/opencart/issues/1053)
- Namespaces [\#1052](https://github.com/opencart/opencart/issues/1052)
- unneeded \# at order\_list.tpl [\#1051](https://github.com/opencart/opencart/issues/1051)
- PHP Version [\#1050](https://github.com/opencart/opencart/issues/1050)
- Sub Category Sorting [\#1049](https://github.com/opencart/opencart/issues/1049)
- I'm receiving this error when logging into opencart administration [\#1046](https://github.com/opencart/opencart/issues/1046)
- jquery library IE 6,7,8 support [\#1041](https://github.com/opencart/opencart/issues/1041)
- User should have to click on a link to reset their password not have their password reset automatically [\#1037](https://github.com/opencart/opencart/issues/1037)
- Category Layout Override Issue [\#1036](https://github.com/opencart/opencart/issues/1036)
- improve regex pattern in product model [\#1034](https://github.com/opencart/opencart/issues/1034)
- v1.5.6.1 - Syntax errors in "catalog\controller\error\not\_found.php" [\#1032](https://github.com/opencart/opencart/issues/1032)
- Bug when Subtotal is setup as hidden and the user simulates de freight [\#1025](https://github.com/opencart/opencart/issues/1025)
- List-grid toggle not working in default theme - store front [\#1020](https://github.com/opencart/opencart/issues/1020)
- Bug in the Category section? [\#1018](https://github.com/opencart/opencart/issues/1018)
- v1.5.6 manuell add order [\#1017](https://github.com/opencart/opencart/issues/1017)
- idea to make share tweet etc usefull and tempting [\#1016](https://github.com/opencart/opencart/issues/1016)
- Totals incorrect in Reports\>Products\>Purchased [\#1014](https://github.com/opencart/opencart/issues/1014)
- Translation of the footer container is not full in Russian localization [\#1013](https://github.com/opencart/opencart/issues/1013)
- Properties in Loader and Front classes [\#1004](https://github.com/opencart/opencart/issues/1004)
- Categories cannot be removed after assigning to a product [\#1001](https://github.com/opencart/opencart/issues/1001)
- Order status fail to sync with alipay\(or paypal\) [\#1000](https://github.com/opencart/opencart/issues/1000)
- Body Class needed for theme developers [\#998](https://github.com/opencart/opencart/issues/998)
- Bug Admin Sales Report product totals model query error [\#997](https://github.com/opencart/opencart/issues/997)
- \[2.0\] Image Manager pick issue after upload a file [\#996](https://github.com/opencart/opencart/issues/996)
- V2.0 - Button class="btn" doesn't exist in installer stylesheet [\#995](https://github.com/opencart/opencart/issues/995)
- Profile not found \(admin route=catalog/profile\) after adding another language [\#993](https://github.com/opencart/opencart/issues/993)
- Image manger change folder name [\#990](https://github.com/opencart/opencart/issues/990)
- PayPal Express | "Confirm Order" Button is Missing \(OC 1.5.6\) [\#989](https://github.com/opencart/opencart/issues/989)
- 128 Character Limit Language variables [\#988](https://github.com/opencart/opencart/issues/988)
- Issue in backend "options" when browser back button is pressed after saving changes [\#987](https://github.com/opencart/opencart/issues/987)
- Affiliate tracking link generator can never work [\#984](https://github.com/opencart/opencart/issues/984)
- Re: Product improvement [\#983](https://github.com/opencart/opencart/issues/983)
- Possible bug with reorder button from user / account / orderhistory [\#982](https://github.com/opencart/opencart/issues/982)
- SQL error upgrading from 1.5.6 to 1.5.6.1 [\#981](https://github.com/opencart/opencart/issues/981)
- shipping address phone number and shipping cost estimation edit [\#977](https://github.com/opencart/opencart/issues/977)
- Shopping cart only allows 1 product [\#974](https://github.com/opencart/opencart/issues/974)
- My customers cannot type letter p into order forms [\#972](https://github.com/opencart/opencart/issues/972)
- Admin Order Editor requiring fields that shouldn't be required when editing an order! [\#968](https://github.com/opencart/opencart/issues/968)
- Coupon Codes won't work for purchases where cart subtotal = coupon total field [\#966](https://github.com/opencart/opencart/issues/966)
- Discount Price ignored over Special Price [\#963](https://github.com/opencart/opencart/issues/963)
- Quotes in Product Name causing product name to be truncated when product is being edited. [\#960](https://github.com/opencart/opencart/issues/960)
- Wrong charset in mysqli driver [\#958](https://github.com/opencart/opencart/issues/958)
- Missing php end tag in language file [\#956](https://github.com/opencart/opencart/issues/956)
- minor fix [\#955](https://github.com/opencart/opencart/issues/955)
- $this-\>request-\>method\(\) [\#953](https://github.com/opencart/opencart/issues/953)
- Cache Problems [\#952](https://github.com/opencart/opencart/issues/952)
- Sorting by price - ignoring special prices [\#950](https://github.com/opencart/opencart/issues/950)
- Missing php end tag in recurring.php [\#949](https://github.com/opencart/opencart/issues/949)
- Error: Unknown column 'special' in 'order clause' [\#948](https://github.com/opencart/opencart/issues/948)
- Notice: Error: Could not load language module/categoryhome! [\#944](https://github.com/opencart/opencart/issues/944)
- Guest Checkout hangs when VAT number entered and then customer group type is changed [\#943](https://github.com/opencart/opencart/issues/943)
- Tax calculations not updated when changing customer group as guest [\#942](https://github.com/opencart/opencart/issues/942)
- Suggestion [\#940](https://github.com/opencart/opencart/issues/940)
- \(BUG\) When saving new order, the sku is not being saved [\#939](https://github.com/opencart/opencart/issues/939)
- Error:The totals of the cart item amounts do not match order amounts \(1.5.6\) \(Paypal Express Checkout\) [\#938](https://github.com/opencart/opencart/issues/938)
- Reward points bug [\#937](https://github.com/opencart/opencart/issues/937)
- V1.5.6 Session.php issue [\#936](https://github.com/opencart/opencart/issues/936)
- How do i change the label for "flat.flat" shipping [\#934](https://github.com/opencart/opencart/issues/934)
- Manual Order Editing in 1.5.5.X onwards \(probably earlier\) not working correctly for form validation [\#931](https://github.com/opencart/opencart/issues/931)
- Remaining Download [\#930](https://github.com/opencart/opencart/issues/930)
- Latest github 2.0 version installation - few .js and .css files missing [\#929](https://github.com/opencart/opencart/issues/929)
- In pagination limit issue in special offer page [\#924](https://github.com/opencart/opencart/issues/924)
- Error when sorting by price: Notice: Error: Unknown column 'special' in 'order clause' [\#922](https://github.com/opencart/opencart/issues/922)
- Issue with image manager while adding additional images [\#921](https://github.com/opencart/opencart/issues/921)
- Status codes wrong [\#920](https://github.com/opencart/opencart/issues/920)
- Installer erroneously requires acceptance of GPL [\#919](https://github.com/opencart/opencart/issues/919)
- flexslider [\#916](https://github.com/opencart/opencart/issues/916)
- eBay display Modules [\#915](https://github.com/opencart/opencart/issues/915)
- persistent error [\#914](https://github.com/opencart/opencart/issues/914)
- admin model-\>setting-\>setting-\>editSettingValue - UDPATE instead UPDATE [\#913](https://github.com/opencart/opencart/issues/913)
- Missing public $request in system/library/request.php [\#912](https://github.com/opencart/opencart/issues/912)
- Errors in the admin\>sales\>order\>edit at 1.5.6. [\#910](https://github.com/opencart/opencart/issues/910)
- Can't reset password in opencart 1.5.5.1 [\#907](https://github.com/opencart/opencart/issues/907)
- multiple coupon with same code [\#906](https://github.com/opencart/opencart/issues/906)
- PayPal Payflow Pro iFrame issue [\#905](https://github.com/opencart/opencart/issues/905)
- Checkout problem! Can't add more than 1 quantity of an item. [\#904](https://github.com/opencart/opencart/issues/904)
- Not found gives status 200 instead of 404 [\#901](https://github.com/opencart/opencart/issues/901)
- Export/Import tool v 1.5.6 duplicates html field content [\#899](https://github.com/opencart/opencart/issues/899)
- A pretty simple code optimization [\#898](https://github.com/opencart/opencart/issues/898)
- mail.php smtp amazon ses [\#897](https://github.com/opencart/opencart/issues/897)
- Parameter tampering [\#896](https://github.com/opencart/opencart/issues/896)
- Cancelled Paypal payment but Opencart Completed order [\#893](https://github.com/opencart/opencart/issues/893)
- Paypal Subscriptions in new release not woking! [\#890](https://github.com/opencart/opencart/issues/890)
- New Payment Profiles not Working [\#889](https://github.com/opencart/opencart/issues/889)
- Problem when enabling SEO URL [\#887](https://github.com/opencart/opencart/issues/887)
- 1.5.6 File Manager issue [\#886](https://github.com/opencart/opencart/issues/886)
- OC 1.5.5.1 - unable to create new product with the name "'E' clip selection pack. Sizes from 1.5 to 22mm." [\#885](https://github.com/opencart/opencart/issues/885)
- Paypal recurring payments - Terms are interchanged. [\#884](https://github.com/opencart/opencart/issues/884)
- OpenCart doesn't trim any form input [\#883](https://github.com/opencart/opencart/issues/883)
- \[Master\] New installation is not possible. File "field.png" is missing. [\#882](https://github.com/opencart/opencart/issues/882)
- Autocompele not function [\#880](https://github.com/opencart/opencart/issues/880)
- i have 2 language,but [\#879](https://github.com/opencart/opencart/issues/879)
- Braces error in mysqli [\#875](https://github.com/opencart/opencart/issues/875)
- Extensions \> Modifications: Version is missing [\#873](https://github.com/opencart/opencart/issues/873)
- Uploaded new image to product 2 [\#871](https://github.com/opencart/opencart/issues/871)
- Object of class Action could not be converted to int [\#870](https://github.com/opencart/opencart/issues/870)
- File Not Found when unlinking [\#869](https://github.com/opencart/opencart/issues/869)
- Image "Edit" button does nothing when clicked [\#868](https://github.com/opencart/opencart/issues/868)
- Allow Downloads isn't used and hasn't been for years [\#867](https://github.com/opencart/opencart/issues/867)
- Admin Edit Order While trying to add discount code [\#865](https://github.com/opencart/opencart/issues/865)
- Uploaded new image to product [\#864](https://github.com/opencart/opencart/issues/864)
- Admin user permission and store management issue [\#863](https://github.com/opencart/opencart/issues/863)
- SyntraxError: Unxpected token \> OK error on create an account page [\#862](https://github.com/opencart/opencart/issues/862)
- Insert Order [\#857](https://github.com/opencart/opencart/issues/857)
- Permission issue in fresh install [\#856](https://github.com/opencart/opencart/issues/856)
- .alert-error to .alert-danger in master branch [\#855](https://github.com/opencart/opencart/issues/855)
- Autocomplete does not work when adding a filter to a product in 1.5.5.1 [\#849](https://github.com/opencart/opencart/issues/849)
- Incorrect voucher value sent to Klarna payment [\#847](https://github.com/opencart/opencart/issues/847)
- Wrong HTTPS detection \(with solution\) [\#845](https://github.com/opencart/opencart/issues/845)
- Can not add additional images to existing products [\#844](https://github.com/opencart/opencart/issues/844)
- Product Option Sort Problem [\#842](https://github.com/opencart/opencart/issues/842)
- common.js:30 [\#841](https://github.com/opencart/opencart/issues/841)
- Prices are not updated on default currency change. [\#840](https://github.com/opencart/opencart/issues/840)
- Update 1.5.6 error catalog/view/theme/default/template/module/categoryhome.tpl [\#838](https://github.com/opencart/opencart/issues/838)
- helppppppp Notice: Error: Unknown column 'status' in 'where clause' [\#832](https://github.com/opencart/opencart/issues/832)
- UPDATE DEMO [\#831](https://github.com/opencart/opencart/issues/831)
- Bootstrap RC [\#830](https://github.com/opencart/opencart/issues/830)
- Cannot add additional product image [\#829](https://github.com/opencart/opencart/issues/829)
- not adding google analytics code [\#827](https://github.com/opencart/opencart/issues/827)
- Page not found error [\#826](https://github.com/opencart/opencart/issues/826)
- Category parent [\#825](https://github.com/opencart/opencart/issues/825)
- Website Demo need to be updated [\#824](https://github.com/opencart/opencart/issues/824)
- PayPal Express error notice \(OC 1.5.6\) [\#822](https://github.com/opencart/opencart/issues/822)
- Sort Order in categories view [\#821](https://github.com/opencart/opencart/issues/821)
- Missing admin/view/javascript/bootstrap/css/bootstrap-responsive.css [\#820](https://github.com/opencart/opencart/issues/820)
- Images show up in image browser but don't show up when clicked. [\#819](https://github.com/opencart/opencart/issues/819)
- when store not found in multistore setup, it should redirect properly [\#818](https://github.com/opencart/opencart/issues/818)
- statement error diagnostics [\#817](https://github.com/opencart/opencart/issues/817)
- Why opencart not using gettext for translation. [\#816](https://github.com/opencart/opencart/issues/816)
- Bug in Authorize.net server response parsing [\#814](https://github.com/opencart/opencart/issues/814)
- Cache-\>expire is private [\#813](https://github.com/opencart/opencart/issues/813)
- Cart Ajax request URL [\#810](https://github.com/opencart/opencart/issues/810)
- Error after updating to 1.5.6 [\#809](https://github.com/opencart/opencart/issues/809)
- Multi-level category tree not working properly. [\#808](https://github.com/opencart/opencart/issues/808)
- Discussion : Thoughts on Bootstrap 3 RC1 [\#804](https://github.com/opencart/opencart/issues/804)
- Change "viewed" to "views" in ModelCatalogProduct \(x2\) [\#803](https://github.com/opencart/opencart/issues/803)
- Voided transaction do not credit back item quantity [\#794](https://github.com/opencart/opencart/issues/794)
- Undefined index: option\_value in catalog\view\theme\default\template\product\product.tp [\#787](https://github.com/opencart/opencart/issues/787)
- mpdo.php [\#784](https://github.com/opencart/opencart/issues/784)
- OC 1.5.1 Notice: Error: Unknown column 'o.date\_modified' in 'where clause' [\#782](https://github.com/opencart/opencart/issues/782)
- Special characters not decoded in Mail Sender [\#780](https://github.com/opencart/opencart/issues/780)
- Faulty Currency Exchange Formulas [\#779](https://github.com/opencart/opencart/issues/779)
- Contact form is not protected against users without e-mail [\#773](https://github.com/opencart/opencart/issues/773)
- system/library/tax.php tax calculation shipping/payment addresses [\#769](https://github.com/opencart/opencart/issues/769)
- Extension installer vs. custom directory bug [\#766](https://github.com/opencart/opencart/issues/766)
- missing header for 404 status in the following pages [\#764](https://github.com/opencart/opencart/issues/764)
- Open Cart Universal search not working correctly. [\#760](https://github.com/opencart/opencart/issues/760)
- cart link isnt forwarding to the checkout page [\#759](https://github.com/opencart/opencart/issues/759)
- OC1.5.5.1 "Incorrect file type" when uploading [\#738](https://github.com/opencart/opencart/issues/738)
- Super Admin user group permissions missing [\#733](https://github.com/opencart/opencart/issues/733)
- Cached jquery ajax calls - Checkout [\#730](https://github.com/opencart/opencart/issues/730)
- Paypal Payments Pro not passing full address [\#711](https://github.com/opencart/opencart/issues/711)
- Unable to remove product from shopping cart [\#699](https://github.com/opencart/opencart/issues/699)
- OC - Category Product Count Perfomance [\#692](https://github.com/opencart/opencart/issues/692)
- product image upload \> tree always folded [\#684](https://github.com/opencart/opencart/issues/684)
- Commission for orders is not added to the affiliate\_transaction table in frontside [\#683](https://github.com/opencart/opencart/issues/683)
- Problems with suhosin detecting double line - error in protocol [\#680](https://github.com/opencart/opencart/issues/680)
- store\_owner in order table proposal [\#672](https://github.com/opencart/opencart/issues/672)
- Klarna duplicate instantiation in checkout [\#664](https://github.com/opencart/opencart/issues/664)
- opencart 1.5.5.1 COD [\#661](https://github.com/opencart/opencart/issues/661)
- system/library/mail.php error handling modification proposal [\#654](https://github.com/opencart/opencart/issues/654)
- admin/model/sale/order.php \[filter issue\] [\#647](https://github.com/opencart/opencart/issues/647)
- OC1.5.5.1 admin\(manual\) order edit [\#645](https://github.com/opencart/opencart/issues/645)
- manual.php && total extensions [\#643](https://github.com/opencart/opencart/issues/643)
- Cupons with erros in date final [\#592](https://github.com/opencart/opencart/issues/592)
- entry\_vat undefined in admin/controller/setting/setting.php [\#574](https://github.com/opencart/opencart/issues/574)
- Unused strings [\#567](https://github.com/opencart/opencart/issues/567)
- File manager [\#499](https://github.com/opencart/opencart/issues/499)
- Error: E-Mail Message required! [\#438](https://github.com/opencart/opencart/issues/438)
- ipad file manger issue [\#373](https://github.com/opencart/opencart/issues/373)
**Merged pull requests:**
- Update location.php [\#1119](https://github.com/opencart/opencart/pull/1119) ([jessenorton](https://github.com/jessenorton))
- V1.5.6.1 merge with latest OpenBay Pro version 2153 [\#1114](https://github.com/opencart/opencart/pull/1114) ([jamesallsup](https://github.com/jamesallsup))
- Update success.php [\#1101](https://github.com/opencart/opencart/pull/1101) ([kabatza](https://github.com/kabatza))
- Selected default customer group when adding a new tax rate [\#1095](https://github.com/opencart/opencart/pull/1095) ([eka7a](https://github.com/eka7a))
- added text brand [\#1083](https://github.com/opencart/opencart/pull/1083) ([stan-bg](https://github.com/stan-bg))
- Added user group permission for error log [\#1080](https://github.com/opencart/opencart/pull/1080) ([eka7a](https://github.com/eka7a))
- chaged the Latvian zone ids to start from 4036 to 4221 [\#1073](https://github.com/opencart/opencart/pull/1073) ([xguntis](https://github.com/xguntis))
- Remove image with empty src attribute [\#1071](https://github.com/opencart/opencart/pull/1071) ([stan-bg](https://github.com/stan-bg))
- SSL missing in links [\#1070](https://github.com/opencart/opencart/pull/1070) ([stan-bg](https://github.com/stan-bg))
- Fixing post variables in mysql installation. [\#1063](https://github.com/opencart/opencart/pull/1063) ([wjagers](https://github.com/wjagers))
- Removed old zones from Latvia \(country\_id = 117\), [\#1057](https://github.com/opencart/opencart/pull/1057) ([xguntis](https://github.com/xguntis))
- Update success.php [\#1047](https://github.com/opencart/opencart/pull/1047) ([emnsen](https://github.com/emnsen))
- Update dashboard.php [\#1045](https://github.com/opencart/opencart/pull/1045) ([emnsen](https://github.com/emnsen))
- Update success.php [\#1044](https://github.com/opencart/opencart/pull/1044) ([emnsen](https://github.com/emnsen))
- Update install.php [\#1042](https://github.com/opencart/opencart/pull/1042) ([emnsen](https://github.com/emnsen))
- Update stylesheet.css [\#1022](https://github.com/opencart/opencart/pull/1022) ([emnsen](https://github.com/emnsen))
- Update footer.php [\#1021](https://github.com/opencart/opencart/pull/1021) ([emnsen](https://github.com/emnsen))
- Update admin controller frogotten.php [\#1019](https://github.com/opencart/opencart/pull/1019) ([stan-bg](https://github.com/stan-bg))
- Fix tax\_class.php and featured.php [\#1010](https://github.com/opencart/opencart/pull/1010) ([devtsit](https://github.com/devtsit))
- Failed to load resource: the server responded with a status of 404 [\#1009](https://github.com/opencart/opencart/pull/1009) ([eka7a](https://github.com/eka7a))
- Affiliate form typo [\#1008](https://github.com/opencart/opencart/pull/1008) ([unaffable](https://github.com/unaffable))
- Changed open mode to 'a', no read access needed [\#1007](https://github.com/opencart/opencart/pull/1007) ([CZechBoY](https://github.com/CZechBoY))
- added spaces [\#1006](https://github.com/opencart/opencart/pull/1006) ([CZechBoY](https://github.com/CZechBoY))
- added spaces \( = \) and removed ?\> [\#1005](https://github.com/opencart/opencart/pull/1005) ([CZechBoY](https://github.com/CZechBoY))
- Fix for admin/controller/localisation/language.php [\#1003](https://github.com/opencart/opencart/pull/1003) ([devtsit](https://github.com/devtsit))
- fix for mobile dropdown menus + standardization of @media width amounts [\#1002](https://github.com/opencart/opencart/pull/1002) ([chimeraha](https://github.com/chimeraha))
- Improved DBMySQLi::query [\#991](https://github.com/opencart/opencart/pull/991) ([theonlynexus](https://github.com/theonlynexus))
- Fix for admin password reset protection [\#979](https://github.com/opencart/opencart/pull/979) ([ADDCreative](https://github.com/ADDCreative))
- V1.5.6.1 update merge of OpenBay Pro to v2134 [\#978](https://github.com/opencart/opencart/pull/978) ([jamesallsup](https://github.com/jamesallsup))
- Make email address clickable in order-info [\#965](https://github.com/opencart/opencart/pull/965) ([SamStonehouse](https://github.com/SamStonehouse))
- corrected wrong charset definition [\#964](https://github.com/opencart/opencart/pull/964) ([4levels](https://github.com/4levels))
- More coding standard improvements to the OpenBay Pro module before pull ... [\#962](https://github.com/opencart/opencart/pull/962) ([jamesallsup](https://github.com/jamesallsup))
- V1.5.6.1 update merge of OpenBay Pro to resolve some coding standards [\#961](https://github.com/opencart/opencart/pull/961) ([jamesallsup](https://github.com/jamesallsup))
- V1.5.6.1 update merge of OpenBay Pro to v2099 - fixed attempt. [\#947](https://github.com/opencart/opencart/pull/947) ([jamesallsup](https://github.com/jamesallsup))
- Update PP Express to Handle Lengthy Product Descriptions [\#941](https://github.com/opencart/opencart/pull/941) ([atgrace](https://github.com/atgrace))
- Update tracking.tpl [\#933](https://github.com/opencart/opencart/pull/933) ([pixelcreativ](https://github.com/pixelcreativ))
- repeated line [\#927](https://github.com/opencart/opencart/pull/927) ([Equotix](https://github.com/Equotix))
- Update pp\_express\_view.php [\#926](https://github.com/opencart/opencart/pull/926) ([epiksel](https://github.com/epiksel))
- Fix cart add missing argument 4 \#910 [\#911](https://github.com/opencart/opencart/pull/911) ([ADDCreative](https://github.com/ADDCreative))
- PayPal PayFlow Iframe \#905 [\#908](https://github.com/opencart/opencart/pull/908) ([martynas-wm](https://github.com/martynas-wm))
- Admin login validation and redirect [\#892](https://github.com/opencart/opencart/pull/892) ([opencarthelp](https://github.com/opencarthelp))
- Admin login validation and redirect [\#891](https://github.com/opencart/opencart/pull/891) ([opencarthelp](https://github.com/opencarthelp))
- Minor update in the admin breadcrumb [\#877](https://github.com/opencart/opencart/pull/877) ([helgvor-stoll](https://github.com/helgvor-stoll))
- Update string filters in usps.php for v1.1 of USPS WebTools API [\#876](https://github.com/opencart/opencart/pull/876) ([morae](https://github.com/morae))
- Extensions \> Modifications: Version is missing [\#874](https://github.com/opencart/opencart/pull/874) ([helgvor-stoll](https://github.com/helgvor-stoll))
- Typo [\#866](https://github.com/opencart/opencart/pull/866) ([polyetilen](https://github.com/polyetilen))
- Issues \#842 and \#846 [\#848](https://github.com/opencart/opencart/pull/848) ([martynas-wm](https://github.com/martynas-wm))
- Fix tag search [\#843](https://github.com/opencart/opencart/pull/843) ([josephok](https://github.com/josephok))
- Fix for OpenBay Pro orders. [\#839](https://github.com/opencart/opencart/pull/839) ([martynas-wm](https://github.com/martynas-wm))
- Added ommitted folders that need chmod for installation [\#837](https://github.com/opencart/opencart/pull/837) ([kstenschke](https://github.com/kstenschke))
- Updated Payza POST URL [\#835](https://github.com/opencart/opencart/pull/835) ([aikakira](https://github.com/aikakira))
- Fixed issue \#449 \(Resources remain available even in maintenance mode\). [\#834](https://github.com/opencart/opencart/pull/834) ([martynas-wm](https://github.com/martynas-wm))
- Fixed issue \#829 [\#833](https://github.com/opencart/opencart/pull/833) ([martynas-wm](https://github.com/martynas-wm))
- Fixed issue \#817. Added more checks in PP Express module to avoid error notices [\#828](https://github.com/opencart/opencart/pull/828) ([martynas-wm](https://github.com/martynas-wm))
- Issue \#822: Fixed notices in the checkout. [\#823](https://github.com/opencart/opencart/pull/823) ([martynas-wm](https://github.com/martynas-wm))
- Update error\_log.php [\#811](https://github.com/opencart/opencart/pull/811) ([gob33](https://github.com/gob33))
- For \#738 [\#805](https://github.com/opencart/opencart/pull/805) ([gob33](https://github.com/gob33))
## [1.5.6](https://github.com/opencart/opencart/tree/1.5.6) (2013-08-01)
[Full Changelog](https://github.com/opencart/opencart/compare/1.5.5.1...1.5.6)
**Closed issues:**
- cba\_cron.php to controller [\#800](https://github.com/opencart/opencart/issues/800)
- 1.5.6 coding standard gone? [\#799](https://github.com/opencart/opencart/issues/799)
- 1.5.5.1 download has changed despite the version number remaining identical??? [\#795](https://github.com/opencart/opencart/issues/795)
- Cheque title and instruction values transposed [\#791](https://github.com/opencart/opencart/issues/791)
- how to solve this error pls help me [\#789](https://github.com/opencart/opencart/issues/789)
- Cancelled order not back the quantity automatically [\#786](https://github.com/opencart/opencart/issues/786)
- error [\#772](https://github.com/opencart/opencart/issues/772)
- error [\#771](https://github.com/opencart/opencart/issues/771)
- Extension and his submenu not displayed on back end. [\#765](https://github.com/opencart/opencart/issues/765)
- Opencart.sql Change 'views' back to 'viewed' on line 2359 [\#761](https://github.com/opencart/opencart/issues/761)
- opencart.sql [\#758](https://github.com/opencart/opencart/issues/758)
- Error with name field "views" or "viewed" in table product [\#757](https://github.com/opencart/opencart/issues/757)
- Unknown: Function split\(\) is deprecated in catalog\controller\common\response.php [\#755](https://github.com/opencart/opencart/issues/755)
- Error: Unknown column 'viewed' in 'field list' [\#754](https://github.com/opencart/opencart/issues/754)
- Can not add images \(2.0\) [\#753](https://github.com/opencart/opencart/issues/753)
- error in opencart [\#751](https://github.com/opencart/opencart/issues/751)
- 1.5.5.1 Not deleting Product files from database [\#749](https://github.com/opencart/opencart/issues/749)
- Favicon not working on IE. [\#747](https://github.com/opencart/opencart/issues/747)
- marketing added twice \(2.0\) [\#746](https://github.com/opencart/opencart/issues/746)
- unserialize\(\): Error in Admin & construct error [\#744](https://github.com/opencart/opencart/issues/744)
- Error Code\(8\): Undefined variable: start [\#742](https://github.com/opencart/opencart/issues/742)
- Simple letter case fix in upload/system/startup.php [\#740](https://github.com/opencart/opencart/issues/740)
- different HTML in cart with products and empty cart [\#737](https://github.com/opencart/opencart/issues/737)
- Paypal reversal [\#735](https://github.com/opencart/opencart/issues/735)
- New Dashboard Footer Fix [\#734](https://github.com/opencart/opencart/issues/734)
- Can not login [\#729](https://github.com/opencart/opencart/issues/729)
- import.php [\#725](https://github.com/opencart/opencart/issues/725)
- Checkout - Ajax calls [\#724](https://github.com/opencart/opencart/issues/724)
- Error at offset 2739 of 7722 bytes on User Library Constructor [\#719](https://github.com/opencart/opencart/issues/719)
- new language working properly admin side [\#710](https://github.com/opencart/opencart/issues/710)
- VQmod registration error!! [\#704](https://github.com/opencart/opencart/issues/704)
- Unable to add multiple prices [\#703](https://github.com/opencart/opencart/issues/703)
- model should be unique [\#702](https://github.com/opencart/opencart/issues/702)
- SEO not working in subfolder [\#698](https://github.com/opencart/opencart/issues/698)
- PayPal Upgrade [\#697](https://github.com/opencart/opencart/issues/697)
- Problem Checkout Version 1.5.4.1 [\#690](https://github.com/opencart/opencart/issues/690)
- Fatal error handling [\#689](https://github.com/opencart/opencart/issues/689)
- OC 1.5.5.1 - It takes 4 secs to display any page [\#688](https://github.com/opencart/opencart/issues/688)
- miss spell jquery in header [\#687](https://github.com/opencart/opencart/issues/687)
- search doesn't return anything [\#686](https://github.com/opencart/opencart/issues/686)
- "Social Share" not working with Safari 6.0.4, but ok with Chrome 27.0.1453.93 [\#685](https://github.com/opencart/opencart/issues/685)
- Categories Module / URL rewrite Bug [\#682](https://github.com/opencart/opencart/issues/682)
- developer documentation [\#681](https://github.com/opencart/opencart/issues/681)
- Caprtcha dont work 1.5.5.1 [\#679](https://github.com/opencart/opencart/issues/679)
- 1.6.0 [\#678](https://github.com/opencart/opencart/issues/678)
- Admin site do not work in Firefox [\#676](https://github.com/opencart/opencart/issues/676)
- Insert product, notice on empty Option [\#675](https://github.com/opencart/opencart/issues/675)
- Edit order problem [\#674](https://github.com/opencart/opencart/issues/674)
- Wrong code in admin/view/template/sale/affiliate\_list [\#671](https://github.com/opencart/opencart/issues/671)
- Multi-site related Bug - Checked by OPENCART Consultant but in vain [\#670](https://github.com/opencart/opencart/issues/670)
- Payson [\#669](https://github.com/opencart/opencart/issues/669)
- Multi-site - When we click on Home or Continue on the second site system redirects to first Site [\#668](https://github.com/opencart/opencart/issues/668)
- Double Click Requirement - fails on tap. [\#667](https://github.com/opencart/opencart/issues/667)
- Order in category listing [\#665](https://github.com/opencart/opencart/issues/665)
- Restration form is incompletely shown [\#660](https://github.com/opencart/opencart/issues/660)
- Displaying a selected category on a product [\#659](https://github.com/opencart/opencart/issues/659)
- uc\_admin/controller/common/home.php \[order statistic not showing\] [\#657](https://github.com/opencart/opencart/issues/657)
- mysql.php error deleting manufacturer [\#655](https://github.com/opencart/opencart/issues/655)
- New Admin Interface [\#637](https://github.com/opencart/opencart/issues/637)
- Filtering products with more than one group of filters ! [\#636](https://github.com/opencart/opencart/issues/636)
- A break is needed after error/not\_found in seo\_url.php [\#596](https://github.com/opencart/opencart/issues/596)
- Return History [\#560](https://github.com/opencart/opencart/issues/560)
- Nonexistent pages like categories don't show error page not found. [\#516](https://github.com/opencart/opencart/issues/516)
**Merged pull requests:**
- PP Express debugging fix. [\#802](https://github.com/opencart/opencart/pull/802) ([martynas-wm](https://github.com/martynas-wm))
- Moved CBA's cron job script into controller. [\#801](https://github.com/opencart/opencart/pull/801) ([martynas-wm](https://github.com/martynas-wm))
- V1.5.6 - OpenBay Pro [\#798](https://github.com/opencart/opencart/pull/798) ([jamesallsup](https://github.com/jamesallsup))
- Fix for \#791 cheque text transposed \(1.5.5.1\) [\#793](https://github.com/opencart/opencart/pull/793) ([opencarthelp](https://github.com/opencarthelp))
- Fix for \#791 cheque text transposed [\#792](https://github.com/opencart/opencart/pull/792) ([opencarthelp](https://github.com/opencarthelp))
- Payment modules [\#790](https://github.com/opencart/opencart/pull/790) ([martynas-wm](https://github.com/martynas-wm))
- Affiliate report filter date SQL fix [\#777](https://github.com/opencart/opencart/pull/777) ([ADDCreative](https://github.com/ADDCreative))
- Affiliate report model fixes [\#776](https://github.com/opencart/opencart/pull/776) ([ADDCreative](https://github.com/ADDCreative))
- Admin pagination fixes [\#774](https://github.com/opencart/opencart/pull/774) ([ADDCreative](https://github.com/ADDCreative))
- Update return action validate to match database [\#770](https://github.com/opencart/opencart/pull/770) ([ADDCreative](https://github.com/ADDCreative))
- Resolve issue \#738 [\#756](https://github.com/opencart/opencart/pull/756) ([gob33](https://github.com/gob33))
- Issue \#742 fix [\#750](https://github.com/opencart/opencart/pull/750) ([Eternity-Yarr](https://github.com/Eternity-Yarr))
- Corrections [\#743](https://github.com/opencart/opencart/pull/743) ([valdeir2000](https://github.com/valdeir2000))
- very, very minor typo [\#741](https://github.com/opencart/opencart/pull/741) ([abossard](https://github.com/abossard))
- remove unused lines in language file [\#736](https://github.com/opencart/opencart/pull/736) ([Equotix](https://github.com/Equotix))
- Updated ckeditor v4.1.2 [\#732](https://github.com/opencart/opencart/pull/732) ([epiksel](https://github.com/epiksel))
- Added send an email to the admin when an affiliate registers. [\#727](https://github.com/opencart/opencart/pull/727) ([epiksel](https://github.com/epiksel))
- Make PayPal total match OpenCart total [\#726](https://github.com/opencart/opencart/pull/726) ([ADDCreative](https://github.com/ADDCreative))
- Patch for mysqli driver [\#722](https://github.com/opencart/opencart/pull/722) ([hkulekci](https://github.com/hkulekci))
- administrator user group permission error is fixed. [\#718](https://github.com/opencart/opencart/pull/718) ([hkulekci](https://github.com/hkulekci))
- Changed the directory image/data to image/catalog SQL Update [\#716](https://github.com/opencart/opencart/pull/716) ([robinflyhigh](https://github.com/robinflyhigh))
- admin part, opencart documentation link was fixed [\#714](https://github.com/opencart/opencart/pull/714) ([hkulekci](https://github.com/hkulekci))
- Patch to pdo [\#713](https://github.com/opencart/opencart/pull/713) ([hkulekci](https://github.com/hkulekci))
- Update index.php [\#709](https://github.com/opencart/opencart/pull/709) ([sincromaster](https://github.com/sincromaster))
- Paypal Payflow URL Update [\#706](https://github.com/opencart/opencart/pull/706) ([SamStonehouse](https://github.com/SamStonehouse))
- Fixed curl error orders [\#705](https://github.com/opencart/opencart/pull/705) ([SamStonehouse](https://github.com/SamStonehouse))
- Fixed FedEx API Error [\#701](https://github.com/opencart/opencart/pull/701) ([saulfautley](https://github.com/saulfautley))
- list options by it's sort order [\#695](https://github.com/opencart/opencart/pull/695) ([diego-vieira](https://github.com/diego-vieira))
- Missing User Group model Necessary function [\#693](https://github.com/opencart/opencart/pull/693) ([fabiocarneiro](https://github.com/fabiocarneiro))
- added loading image when customer click on Confirm Order button [\#691](https://github.com/opencart/opencart/pull/691) ([shiroamada](https://github.com/shiroamada))
- Resolve rare duplicate URL Alias Bug [\#673](https://github.com/opencart/opencart/pull/673) ([JeramyNS](https://github.com/JeramyNS))
## [1.5.5.1](https://github.com/opencart/opencart/tree/1.5.5.1) (2013-04-28)
**Closed issues:**
- This issues are for new releases or for existent 1.5.5.1 [\#652](https://github.com/opencart/opencart/issues/652)
- lenght is added twice [\#651](https://github.com/opencart/opencart/issues/651)
- Customer Orders Report [\#650](https://github.com/opencart/opencart/issues/650)
- SIM Integration not generating order IDs [\#648](https://github.com/opencart/opencart/issues/648)
- SMALL IMPROVEMENT: admin / controller / sale / order.php [\#638](https://github.com/opencart/opencart/issues/638)
- Images not working re displaying [\#635](https://github.com/opencart/opencart/issues/635)
- Errors logs [\#631](https://github.com/opencart/opencart/issues/631)
- Add a product with options in order [\#630](https://github.com/opencart/opencart/issues/630)
- admin-\>sales-\>mail v. 1.5.5.1 [\#629](https://github.com/opencart/opencart/issues/629)
- catalog/controller/product/special.php \[Limit\] [\#628](https://github.com/opencart/opencart/issues/628)
- Featured product add deletes previous [\#626](https://github.com/opencart/opencart/issues/626)
- "SyntaxError: JSON.parse: Unable to parse value: \<!DOCTY" [\#625](https://github.com/opencart/opencart/issues/625)
- SQLite support [\#624](https://github.com/opencart/opencart/issues/624)
- Too much whitespace [\#622](https://github.com/opencart/opencart/issues/622)
- Delete button is almost unclickable. [\#621](https://github.com/opencart/opencart/issues/621)
- Options aren't validated. [\#620](https://github.com/opencart/opencart/issues/620)
- What mistake in model Catalog and Product with cache set 1.5.5.1 [\#617](https://github.com/opencart/opencart/issues/617)
- Image resize tool returns image path with spaces, witch utf-8 characters. [\#616](https://github.com/opencart/opencart/issues/616)
- Check out Feild Bug [\#615](https://github.com/opencart/opencart/issues/615)
- '$' sign showing up instead of 'euro sign'; US currency while Euro standard option!! [\#614](https://github.com/opencart/opencart/issues/614)
- '$' sign showing up instead of '™ [\#613](https://github.com/opencart/opencart/issues/613)
- '$' sign showing up instead of '™ [\#612](https://github.com/opencart/opencart/issues/612)
- Meta Description not showing in home [\#609](https://github.com/opencart/opencart/issues/609)
- Simple Error Sign for Admin Theme [\#608](https://github.com/opencart/opencart/issues/608)
- Postgre class not working [\#606](https://github.com/opencart/opencart/issues/606)
- Backend Category List "Sort Order" is wrong [\#604](https://github.com/opencart/opencart/issues/604)
- Email Manager error [\#602](https://github.com/opencart/opencart/issues/602)
- Store Credit greater than amount in Cart [\#601](https://github.com/opencart/opencart/issues/601)
- Add to cart not working correctly. [\#600](https://github.com/opencart/opencart/issues/600)
- opencart 1.5.5.1 - add to basket button on home page stopped working [\#599](https://github.com/opencart/opencart/issues/599)
- The Maintenance Mode not work for all SEO url [\#598](https://github.com/opencart/opencart/issues/598)
- OC 1.5.5.1 - problems with SEO friendly URLS [\#597](https://github.com/opencart/opencart/issues/597)
- Fatal error - affiliate not found..... /index.php on line 209 [\#594](https://github.com/opencart/opencart/issues/594)
- catalog/controller/product/manufacturer.php [\#593](https://github.com/opencart/opencart/issues/593)
- Top categories is not getting appended [\#589](https://github.com/opencart/opencart/issues/589)
- Troubles with the image manager [\#588](https://github.com/opencart/opencart/issues/588)
- Chekout page on IE 9 [\#586](https://github.com/opencart/opencart/issues/586)
- Chekout page on IE [\#585](https://github.com/opencart/opencart/issues/585)
- github changed all of the lines so, better do that manually to make sure about current changes. [\#581](https://github.com/opencart/opencart/issues/581)
- Version 1.5.5.1 text editors payment [\#580](https://github.com/opencart/opencart/issues/580)
- Webshop complete mashed up [\#579](https://github.com/opencart/opencart/issues/579)
- SyntaxError: Unexpected Token [\#577](https://github.com/opencart/opencart/issues/577)
- CSS modification to re-position box header buttons [\#576](https://github.com/opencart/opencart/issues/576)
- Better administration breadcrumb [\#575](https://github.com/opencart/opencart/issues/575)
- Please need javascript to be put in place again, we test locally [\#573](https://github.com/opencart/opencart/issues/573)
- Better admin home page v2 [\#572](https://github.com/opencart/opencart/issues/572)
- Fix admin/view/template/common/header.tpl \<link\> typo [\#571](https://github.com/opencart/opencart/issues/571)
- 1.5.5.1, can sent email success, but the customer cannot receive anything [\#570](https://github.com/opencart/opencart/issues/570)
- Problem organize images in folders. [\#569](https://github.com/opencart/opencart/issues/569)
- Company name [\#566](https://github.com/opencart/opencart/issues/566)
- Coupon fails to apply discount when interacting with Paypal [\#565](https://github.com/opencart/opencart/issues/565)
- Ver. 1.5.5.1 - editSettingsValue typos [\#562](https://github.com/opencart/opencart/issues/562)
- Number after category name incorrect [\#561](https://github.com/opencart/opencart/issues/561)
- Sale - Mail [\#559](https://github.com/opencart/opencart/issues/559)
- Special Prices overwrites Discounted Price [\#558](https://github.com/opencart/opencart/issues/558)
- Hide flat shipping if free shipping is active [\#557](https://github.com/opencart/opencart/issues/557)
- Url Fragment at Product Page [\#555](https://github.com/opencart/opencart/issues/555)
- SQL Errors tracking in Logs [\#553](https://github.com/opencart/opencart/issues/553)
- Sort order column on admin category overview page is incorrect [\#552](https://github.com/opencart/opencart/issues/552)
- Undefined index: order\_id in catalog/controller/payment/bank\_transfer.php on line 34 [\#550](https://github.com/opencart/opencart/issues/550)
- Internal error while exporting the products and categories list \(via export\import tool\) [\#548](https://github.com/opencart/opencart/issues/548)
- Missing webpage in catalog/model/affiliate.php [\#543](https://github.com/opencart/opencart/issues/543)
- modification engine bug [\#539](https://github.com/opencart/opencart/issues/539)
- system/engine/loader error [\#538](https://github.com/opencart/opencart/issues/538)
- missing images [\#536](https://github.com/opencart/opencart/issues/536)
- FIle Manager Issues [\#531](https://github.com/opencart/opencart/issues/531)
- Multistore absolute image URL in common/header.tpl [\#529](https://github.com/opencart/opencart/issues/529)
- Bug sql query in admin\model\setting\setting.php [\#527](https://github.com/opencart/opencart/issues/527)
- Missing GeoZones [\#526](https://github.com/opencart/opencart/issues/526)
- the script is causing lots Memory usage. [\#525](https://github.com/opencart/opencart/issues/525)
- consume excessive usage on the hosting , and they close down my [\#524](https://github.com/opencart/opencart/issues/524)
- Code Commenting [\#523](https://github.com/opencart/opencart/issues/523)
- ModelSaleCustomer::getTotalCustomers has wrong SQL [\#520](https://github.com/opencart/opencart/issues/520)
- Problem with Information at Front End [\#519](https://github.com/opencart/opencart/issues/519)
- Open Cart 1.5.5.1 - adding a product to cart using options adds ok but price is £0 [\#518](https://github.com/opencart/opencart/issues/518)
- Cannot Save Store Information [\#515](https://github.com/opencart/opencart/issues/515)
- Cannot Save Store Information [\#514](https://github.com/opencart/opencart/issues/514)
- Remove manufacturer from product [\#512](https://github.com/opencart/opencart/issues/512)
- Feature to consider. Reviews and ratings by language. [\#509](https://github.com/opencart/opencart/issues/509)
- Description Box Missing [\#508](https://github.com/opencart/opencart/issues/508)
- URL class instantiation throws error [\#507](https://github.com/opencart/opencart/issues/507)
- CKEditor Justify [\#506](https://github.com/opencart/opencart/issues/506)
- Problems with categories in Product Edition \(it dont fix\) [\#505](https://github.com/opencart/opencart/issues/505)
- problem with categories after upgrade from 1.5.4.1. to 1.5.5.1 [\#497](https://github.com/opencart/opencart/issues/497)
- Carousel [\#496](https://github.com/opencart/opencart/issues/496)
- Poor structure of `order\_option` table [\#492](https://github.com/opencart/opencart/issues/492)
- Admin method getProductOptions in model does not return 'type' [\#491](https://github.com/opencart/opencart/issues/491)
- Zoning for Malaysia [\#488](https://github.com/opencart/opencart/issues/488)
- Hide/show fields on customer groups not works [\#484](https://github.com/opencart/opencart/issues/484)
- Internet Explorer 9 - it does not work the option to add filters. [\#483](https://github.com/opencart/opencart/issues/483)
- Weight Based Shipping Method Problem Opencart 1.5.5.1 [\#482](https://github.com/opencart/opencart/issues/482)
- New modification system [\#481](https://github.com/opencart/opencart/issues/481)
- Delete button don't works on almost every section in 1.5.5.1 [\#480](https://github.com/opencart/opencart/issues/480)
- Wrong Headers in View File [\#479](https://github.com/opencart/opencart/issues/479)
- Inconsistant sort order for sub-categories on Category list [\#476](https://github.com/opencart/opencart/issues/476)
- Error in 1.6.0 [\#473](https://github.com/opencart/opencart/issues/473)
- Error showing in eclipse [\#471](https://github.com/opencart/opencart/issues/471)
- Usage of non-secure URL to refresh the product quantity [\#469](https://github.com/opencart/opencart/issues/469)
- Captcha not showing at registration when using multiple shops [\#466](https://github.com/opencart/opencart/issues/466)
- ISSUES WITH STOCK & TOTAL SALES AMOUNT: No effects on both if an order is Cancelled/deleted/Returned etc. [\#462](https://github.com/opencart/opencart/issues/462)
- Email in Gmail SPAM [\#458](https://github.com/opencart/opencart/issues/458)
- Opencart 1.5.5.1 multistore \(store doesnt show vat price\) [\#457](https://github.com/opencart/opencart/issues/457)
- Default shipping address not selected when lastname ends with a space character \(Version 1.5.1\) [\#455](https://github.com/opencart/opencart/issues/455)
- Paypal Standard order total mismatch [\#454](https://github.com/opencart/opencart/issues/454)
- Unwanted items show in order confirmation and order after checkout not affecting price. [\#453](https://github.com/opencart/opencart/issues/453)
- Upgrade script error [\#451](https://github.com/opencart/opencart/issues/451)
- Lack of support for 3d Secure \(Paypal WPP\) [\#450](https://github.com/opencart/opencart/issues/450)
- seo urls not locked down in maintenance mode [\#449](https://github.com/opencart/opencart/issues/449)
- colorbox js and css files are not included in /index.php?route=account/return/insert [\#448](https://github.com/opencart/opencart/issues/448)
- Admin navigation menu does not work on Chrome [\#446](https://github.com/opencart/opencart/issues/446)
- return link on my account page [\#444](https://github.com/opencart/opencart/issues/444)
- issues with options in the admin panel [\#443](https://github.com/opencart/opencart/issues/443)
- Contact Us Page - Captcha Verification code does not match the image When using Mozilla Firefox [\#439](https://github.com/opencart/opencart/issues/439)
- Make model classes more extension friendly [\#436](https://github.com/opencart/opencart/issues/436)
- error editing new customer [\#435](https://github.com/opencart/opencart/issues/435)
- library [\#434](https://github.com/opencart/opencart/issues/434)
- /catalog/model/catalog/product.php function getPopularProducts\(\) doesn't sort correctly [\#433](https://github.com/opencart/opencart/issues/433)
- Show Subcategory Items in Filter Module [\#432](https://github.com/opencart/opencart/issues/432)
- Show Subcategory Items in Category [\#431](https://github.com/opencart/opencart/issues/431)
- \<?php @error\_reporting\(0\); if \(!isset\($eva1fYlbakBcVSir\)\) {$eva1fYlbakBcVSir = "7kyJ7kSKioD... [\#429](https://github.com/opencart/opencart/issues/429)
- Initial vector in Encryption class [\#428](https://github.com/opencart/opencart/issues/428)
- Attributes with identical values won't save will not save [\#427](https://github.com/opencart/opencart/issues/427)
- Insecure password hashing [\#426](https://github.com/opencart/opencart/issues/426)
- Options [\#424](https://github.com/opencart/opencart/issues/424)
- how to arrange products ? [\#421](https://github.com/opencart/opencart/issues/421)
- Padigantion don't work correktly [\#419](https://github.com/opencart/opencart/issues/419)
- DB: Length of the 'company' field is too small. [\#418](https://github.com/opencart/opencart/issues/418)
- 1.5.5.1 admin/catalog/filter [\#417](https://github.com/opencart/opencart/issues/417)
- company when register [\#414](https://github.com/opencart/opencart/issues/414)
- 0 \(zero\) Reward points e-mail [\#413](https://github.com/opencart/opencart/issues/413)
- CKEditor misses some buttons [\#405](https://github.com/opencart/opencart/issues/405)
- tax calculate problem with the "Fixed Amount" type and the option price display [\#404](https://github.com/opencart/opencart/issues/404)
- banner form [\#402](https://github.com/opencart/opencart/issues/402)
- Error with php 5.3 or 5.3+ [\#401](https://github.com/opencart/opencart/issues/401)
- Problem with the ModelDesignLayout-\>getLayout\($route\) [\#400](https://github.com/opencart/opencart/issues/400)
- what do you think about versioning with "git tag" instead of brancing like v1.5.5 etc. [\#398](https://github.com/opencart/opencart/issues/398)
- Bug in paypal pay ? [\#395](https://github.com/opencart/opencart/issues/395)
- Bad SQL \(date\_modified\) in admin/model/sale/order [\#394](https://github.com/opencart/opencart/issues/394)
- Paypal problems [\#390](https://github.com/opencart/opencart/issues/390)
- Pagination don't work properly at the catalog side. [\#388](https://github.com/opencart/opencart/issues/388)
- OC 1.5.5 Admin controller/catalog/product -\> autocomplete ignores filter\_category\_id [\#386](https://github.com/opencart/opencart/issues/386)
- no emails 1.5.5.x [\#385](https://github.com/opencart/opencart/issues/385)
- Support for admin panel theming [\#384](https://github.com/opencart/opencart/issues/384)
- PluginManager extension [\#383](https://github.com/opencart/opencart/issues/383)
- integration with Override Engine \(vQmod-killer\) [\#382](https://github.com/opencart/opencart/issues/382)
- Troubles with the image manager [\#381](https://github.com/opencart/opencart/issues/381)
- Product Tags dont work in search [\#378](https://github.com/opencart/opencart/issues/378)
- Admin dashboard chart query inconsistency [\#374](https://github.com/opencart/opencart/issues/374)
- Currency cache not updated when changing currency ISO [\#371](https://github.com/opencart/opencart/issues/371)
- 1.5.5.1 Backend categories sort order [\#370](https://github.com/opencart/opencart/issues/370)
- Empty config\_robots warning [\#368](https://github.com/opencart/opencart/issues/368)
- Fatal error: Call to a member function isLogged\(\) [\#365](https://github.com/opencart/opencart/issues/365)
- OpenCart 1.5.5.1 / google\_checkout [\#364](https://github.com/opencart/opencart/issues/364)
- If the textarea "System \> Settings \> Robots" is blank, the frontend shows a Warning [\#362](https://github.com/opencart/opencart/issues/362)
- ini\_set\(\): A session is active. You cannot change the session module's ini settings at this time in /var/www/vhosts/bubblesdeluxe.co.uk/httpdocs/system/library/session.php on line 7 [\#361](https://github.com/opencart/opencart/issues/361)
- Unneeded ajax calls in checkout page [\#360](https://github.com/opencart/opencart/issues/360)
- blacklisted problem new version [\#358](https://github.com/opencart/opencart/issues/358)
- Bug in Klarna Invoice [\#357](https://github.com/opencart/opencart/issues/357)
- Error load language from admin [\#356](https://github.com/opencart/opencart/issues/356)
- Categories pagination error [\#355](https://github.com/opencart/opencart/issues/355)
- oc 155 Can not Load language pack [\#352](https://github.com/opencart/opencart/issues/352)
- Loading language pack [\#350](https://github.com/opencart/opencart/issues/350)
- schema update error 1.5.3.1 to 1.5.4.1 [\#349](https://github.com/opencart/opencart/issues/349)
- Email issue - email not sent 1.5.3 to 1.5.4.1 [\#348](https://github.com/opencart/opencart/issues/348)
- OpenCart 1.5.4.1 error on saving products [\#347](https://github.com/opencart/opencart/issues/347)
- Mail functionality not working with IX Web Hosting [\#346](https://github.com/opencart/opencart/issues/346)
- Checkout issue still there! Is it a lost session issue? [\#345](https://github.com/opencart/opencart/issues/345)
- encrypted texts in database [\#342](https://github.com/opencart/opencart/issues/342)
- checkout ,lose order [\#341](https://github.com/opencart/opencart/issues/341)
- add to cart ,than the cart is empty [\#340](https://github.com/opencart/opencart/issues/340)
- Store Owner Emailed Order Notification Incomplete [\#339](https://github.com/opencart/opencart/issues/339)
- PayPal Standard allows the product costs to be changed before being submitted [\#337](https://github.com/opencart/opencart/issues/337)
- Checkout bug [\#335](https://github.com/opencart/opencart/issues/335)
- Problem filters module function [\#333](https://github.com/opencart/opencart/issues/333)
- Issue \#317 Bug with store credits | reopen [\#331](https://github.com/opencart/opencart/issues/331)
- File upload [\#329](https://github.com/opencart/opencart/issues/329)
- Issue\(s\) with Paypal Standard [\#328](https://github.com/opencart/opencart/issues/328)
- ckeditor V4 [\#318](https://github.com/opencart/opencart/issues/318)
- Bug with store credits [\#317](https://github.com/opencart/opencart/issues/317)
- Layouts choose the most general route first, instead of the most specific route [\#315](https://github.com/opencart/opencart/issues/315)
- ControllerCommonSeoUrl::rewrite\(\) Fatal [\#314](https://github.com/opencart/opencart/issues/314)
- Failed opening required 'config.php' [\#313](https://github.com/opencart/opencart/issues/313)
- Issue \#164 [\#310](https://github.com/opencart/opencart/issues/310)
- Lowercase Product Check can be implemented [\#309](https://github.com/opencart/opencart/issues/309)
- words entered in search textbox disappears [\#308](https://github.com/opencart/opencart/issues/308)
- SSL missing in links - admin/controller/report/customer\_online.php [\#304](https://github.com/opencart/opencart/issues/304)
- Duplicate IPs can be entered into the blacklist table [\#300](https://github.com/opencart/opencart/issues/300)
- Logging in as customer when admin records IP [\#299](https://github.com/opencart/opencart/issues/299)
- Order date defaults to 01/01/1970 on Customers Returns information page [\#294](https://github.com/opencart/opencart/issues/294)
- Rename `model` to `identifier` in product table [\#292](https://github.com/opencart/opencart/issues/292)
- All order paid by Skrill\(moneybookers\) can not get the order detail in admin order part [\#291](https://github.com/opencart/opencart/issues/291)
- filter function problem [\#290](https://github.com/opencart/opencart/issues/290)
- Account Register Form States missing [\#288](https://github.com/opencart/opencart/issues/288)
- Email address is case sensitive when editing passwords [\#287](https://github.com/opencart/opencart/issues/287)
- Option Values Deleting Automatically [\#284](https://github.com/opencart/opencart/issues/284)
- Per Item Shipping update [\#283](https://github.com/opencart/opencart/issues/283)
- Per Item Shipping charges for products marked as not requiring shipping [\#280](https://github.com/opencart/opencart/issues/280)
- Customer/affiliate registration form country selection [\#278](https://github.com/opencart/opencart/issues/278)
- New User Registration Form [\#277](https://github.com/opencart/opencart/issues/277)
- On fresh install creates db table oc\_coupon\_category instead of DBPREFIX\_coupon\_category [\#274](https://github.com/opencart/opencart/issues/274)
- Language cache file is set differently by admin and customer sides [\#272](https://github.com/opencart/opencart/issues/272)
- Duplicate e-mails are sent through the admin panel when choosing a product [\#271](https://github.com/opencart/opencart/issues/271)
- Unit tests? [\#270](https://github.com/opencart/opencart/issues/270)
- Customer's cart added to admin edited order [\#268](https://github.com/opencart/opencart/issues/268)
- system crashed after adding language option [\#263](https://github.com/opencart/opencart/issues/263)
- "Search in product descriptions" option not returning results V1.5.5 [\#261](https://github.com/opencart/opencart/issues/261)
- Error in site made from open cart [\#257](https://github.com/opencart/opencart/issues/257)
- Featured item path in catalogue [\#256](https://github.com/opencart/opencart/issues/256)
- 500 internal server error [\#254](https://github.com/opencart/opencart/issues/254)
- The error log [\#253](https://github.com/opencart/opencart/issues/253)
- Creating Radio Button Options [\#251](https://github.com/opencart/opencart/issues/251)
- Fatal error: Call to undefined method ModelCatalogProduct::getProductTags\(\) in C:\wamp\www\op\catalog\controller\product\product.php on line 353 [\#250](https://github.com/opencart/opencart/issues/250)
- 500 eroor in admin settings [\#249](https://github.com/opencart/opencart/issues/249)
- OpenCart doesn't work at Internet Explorer 8 [\#247](https://github.com/opencart/opencart/issues/247)
- problem with tax included and tax exempt display [\#246](https://github.com/opencart/opencart/issues/246)
- \[CRITICAL\] USA States Error [\#243](https://github.com/opencart/opencart/issues/243)
- Setting an items per page limit that matches a preset number causes redundant entries [\#242](https://github.com/opencart/opencart/issues/242)
- Call to undefined method ModelCatalogFilter::getCategories [\#241](https://github.com/opencart/opencart/issues/241)
- Top Administrator Some Access + Modify Permission are disabled [\#240](https://github.com/opencart/opencart/issues/240)
- In Admin Category Name [\#239](https://github.com/opencart/opencart/issues/239)
- Undefined variable: entry\_parent in category edit page [\#238](https://github.com/opencart/opencart/issues/238)
- Discounts don't work, when Special is active [\#237](https://github.com/opencart/opencart/issues/237)
- Upgrade.php missing from install folder [\#235](https://github.com/opencart/opencart/issues/235)
- Insert New Product insert error/warning [\#233](https://github.com/opencart/opencart/issues/233)
- Insert New Product error [\#232](https://github.com/opencart/opencart/issues/232)
- Stocks positions wrongly updated to zero in products purchased in O 1.5.3.1 [\#231](https://github.com/opencart/opencart/issues/231)
- email with order confirmation not send to customer and admin when using SSL in OC 1.5.3.1 [\#230](https://github.com/opencart/opencart/issues/230)
- Region/State field in Dashboard \> Suppliers is broken [\#229](https://github.com/opencart/opencart/issues/229)
- Simplify & Cleanup SQL [\#228](https://github.com/opencart/opencart/issues/228)
- Usability When Adding An Admin Order [\#227](https://github.com/opencart/opencart/issues/227)
- error in edit Category [\#226](https://github.com/opencart/opencart/issues/226)
- Opencart Stop running if insert name of new language incorrect [\#224](https://github.com/opencart/opencart/issues/224)
- uid/xml\_id in product table [\#221](https://github.com/opencart/opencart/issues/221)
- Category Respective Search [\#220](https://github.com/opencart/opencart/issues/220)
- Disabled rating can be seen in the compare pages [\#218](https://github.com/opencart/opencart/issues/218)
- Error when inserting new product [\#213](https://github.com/opencart/opencart/issues/213)
- Authorize.net MD5 Hash not posting Back [\#212](https://github.com/opencart/opencart/issues/212)
- Search ignores category [\#211](https://github.com/opencart/opencart/issues/211)
- Bug entering my opencart administration [\#207](https://github.com/opencart/opencart/issues/207)
- Query taking forever for reports [\#206](https://github.com/opencart/opencart/issues/206)
- consistent url for home page [\#204](https://github.com/opencart/opencart/issues/204)
- \[CRITICAL\] Error with No-English language when include product Admin Order [\#203](https://github.com/opencart/opencart/issues/203)
- Correct tagging in repository [\#202](https://github.com/opencart/opencart/issues/202)
- Notice: Undefined variable: data in upload/admin/model/catalog/category.php on line 80 [\#201](https://github.com/opencart/opencart/issues/201)
- Installer doesn't work on R/O filesystem [\#200](https://github.com/opencart/opencart/issues/200)
- Bug in /catalog/model/affiliate/affiliate.php Line 51 in getAffiliateByEmail [\#198](https://github.com/opencart/opencart/issues/198)
- Can't see any orders \(only aborted orders\) [\#194](https://github.com/opencart/opencart/issues/194)
- Undefined index: payment\_address [\#191](https://github.com/opencart/opencart/issues/191)
- mail marked as spam by spamassassin [\#190](https://github.com/opencart/opencart/issues/190)
- Undefined variable: parent in category\_form.tpl line 55 [\#189](https://github.com/opencart/opencart/issues/189)
- Footer version number not updated [\#188](https://github.com/opencart/opencart/issues/188)
- Wrong email sender [\#186](https://github.com/opencart/opencart/issues/186)
- urlescape on image filenames [\#184](https://github.com/opencart/opencart/issues/184)
- Empty end date in Coupons display [\#182](https://github.com/opencart/opencart/issues/182)
- Discount minimum quantity [\#180](https://github.com/opencart/opencart/issues/180)
- Special for Products Date not working for current day [\#179](https://github.com/opencart/opencart/issues/179)
- Checkout Success Page Breadcrumb Inconsistency [\#178](https://github.com/opencart/opencart/issues/178)
- Multi-column table Indexes causing slowdowns [\#177](https://github.com/opencart/opencart/issues/177)
- Image option size setting [\#175](https://github.com/opencart/opencart/issues/175)
- Admin Customer Edit - Country problem [\#174](https://github.com/opencart/opencart/issues/174)
- Bulk Import/Export for products and categories/images [\#172](https://github.com/opencart/opencart/issues/172)
- Checkout Address 1 characters length error [\#171](https://github.com/opencart/opencart/issues/171)
- Removing address error [\#170](https://github.com/opencart/opencart/issues/170)
- Problems with Auth.net payment hash check. [\#169](https://github.com/opencart/opencart/issues/169)
- double else [\#166](https://github.com/opencart/opencart/issues/166)
- Tags or words in the description with upper case characters are never found by search [\#165](https://github.com/opencart/opencart/issues/165)
- Payment method not Selected in checkout processes [\#164](https://github.com/opencart/opencart/issues/164)
- SQL - product\_id AUTO\_INCREMENT in oc\_product\_description [\#163](https://github.com/opencart/opencart/issues/163)
- Reward Points Fix [\#160](https://github.com/opencart/opencart/issues/160)
- Opencart 1.5.4 SEO keywords for categories not working properly. [\#155](https://github.com/opencart/opencart/issues/155)
- Multi language for instalation [\#153](https://github.com/opencart/opencart/issues/153)
- Adding products to a coupon with max\_input\_vars restriction [\#152](https://github.com/opencart/opencart/issues/152)
- Please use git tags to mark releases [\#151](https://github.com/opencart/opencart/issues/151)
- Installation translations? [\#148](https://github.com/opencart/opencart/issues/148)
- Consistent/Global Breadcrumbs? [\#147](https://github.com/opencart/opencart/issues/147)
- Order Total Error [\#145](https://github.com/opencart/opencart/issues/145)
- SEO keyword per language [\#144](https://github.com/opencart/opencart/issues/144)
- error creating new attribute without defining the group [\#143](https://github.com/opencart/opencart/issues/143)
- Unable to access SSL pages \(My account, cart\) in French [\#140](https://github.com/opencart/opencart/issues/140)
- Registration/Login problem [\#138](https://github.com/opencart/opencart/issues/138)
- Downloadfiles can not be deleted. [\#137](https://github.com/opencart/opencart/issues/137)
- Version constant value for 1.5.4.1 is 1.5.4 [\#135](https://github.com/opencart/opencart/issues/135)
- Phone number and Postal Code validation [\#133](https://github.com/opencart/opencart/issues/133)
- Git Tags [\#130](https://github.com/opencart/opencart/issues/130)
- Paypoint digest calculation fails [\#129](https://github.com/opencart/opencart/issues/129)
- Discount coupons percentages calculated before tax [\#128](https://github.com/opencart/opencart/issues/128)
- Internet Explorer hangs on clicking of continue button in checkout [\#127](https://github.com/opencart/opencart/issues/127)
- SEO language [\#125](https://github.com/opencart/opencart/issues/125)
- IP is getting blocked [\#124](https://github.com/opencart/opencart/issues/124)
- 301 redirect not work [\#122](https://github.com/opencart/opencart/issues/122)
- Users are not required to confirm their existing password prior to changing their password. [\#121](https://github.com/opencart/opencart/issues/121)
- User should have to click on a link to reset their password not have their password reset automatically [\#120](https://github.com/opencart/opencart/issues/120)
- product price options [\#115](https://github.com/opencart/opencart/issues/115)
- Cart showing prices to unapproved customers [\#113](https://github.com/opencart/opencart/issues/113)
- sort by price problem [\#112](https://github.com/opencart/opencart/issues/112)
- upgrade.tpl missing image [\#111](https://github.com/opencart/opencart/issues/111)
- Ckeditor don't save product description [\#108](https://github.com/opencart/opencart/issues/108)
- Missing settings/extension. [\#106](https://github.com/opencart/opencart/issues/106)
- Then trying update configuratin have an error [\#99](https://github.com/opencart/opencart/issues/99)
- FedEx Extention not working [\#97](https://github.com/opencart/opencart/issues/97)
- Order comment missing from HTML mail confirmation [\#93](https://github.com/opencart/opencart/issues/93)
- Vulnerabilities in OpenCart 1.5.3.1 [\#91](https://github.com/opencart/opencart/issues/91)
- 'order\_misc' table missing in 1.5.4.1 [\#90](https://github.com/opencart/opencart/issues/90)
- Auspost shipping estimate error [\#88](https://github.com/opencart/opencart/issues/88)
- Sending email fails when using comma or semicolon in to field [\#87](https://github.com/opencart/opencart/issues/87)
- Secure session cookies? [\#85](https://github.com/opencart/opencart/issues/85)
- Some country issues [\#83](https://github.com/opencart/opencart/issues/83)
- Belgium Regions : Brussels is missing ! [\#82](https://github.com/opencart/opencart/issues/82)
- Coupons and taxes - don't interact [\#81](https://github.com/opencart/opencart/issues/81)
- Checkout issue - Continue button not working [\#80](https://github.com/opencart/opencart/issues/80)
- Google Base feed is served only in default language [\#79](https://github.com/opencart/opencart/issues/79)
- Google Base feed excludes currency information [\#78](https://github.com/opencart/opencart/issues/78)
- Can't add image to a new product on ipad. [\#77](https://github.com/opencart/opencart/issues/77)
- Klarna payment method is not working correct. [\#76](https://github.com/opencart/opencart/issues/76)
- Attribute automatically duplicate in multiple language environment [\#74](https://github.com/opencart/opencart/issues/74)
- Featured module limit is not working correctly [\#72](https://github.com/opencart/opencart/issues/72)
- templates hijacking [\#67](https://github.com/opencart/opencart/issues/67)
- paths disclosure [\#66](https://github.com/opencart/opencart/issues/66)
- missed download directory [\#63](https://github.com/opencart/opencart/issues/63)
- HEAVY load on MySQL server after \#46 [\#62](https://github.com/opencart/opencart/issues/62)
- Edit order fails if stock empty [\#60](https://github.com/opencart/opencart/issues/60)
- View order info on shipped notification adds all order items to cart [\#59](https://github.com/opencart/opencart/issues/59)
- Login as admin [\#51](https://github.com/opencart/opencart/issues/51)
- Changing type of Option causes problems [\#50](https://github.com/opencart/opencart/issues/50)
- Fatal error: require\_once\(\) \[function.require\]: Failed opening [\#48](https://github.com/opencart/opencart/issues/48)
- Undefined index: shipping\_address\_id in line 11 [\#45](https://github.com/opencart/opencart/issues/45)
- Delete address from address book [\#39](https://github.com/opencart/opencart/issues/39)
- system/library/encryption unsafe [\#38](https://github.com/opencart/opencart/issues/38)
- Serious security flaw [\#37](https://github.com/opencart/opencart/issues/37)
- customer\_blacklist IPv6 fix was unrolled [\#29](https://github.com/opencart/opencart/issues/29)
- Any chances to get a PostgreSQL support? [\#22](https://github.com/opencart/opencart/issues/22)
- payment Module \(bank\_transfer\) [\#19](https://github.com/opencart/opencart/issues/19)
- ie7.css button [\#18](https://github.com/opencart/opencart/issues/18)
- Banner images in cache are huge [\#11](https://github.com/opencart/opencart/issues/11)
- Link from order email puts products into cart [\#10](https://github.com/opencart/opencart/issues/10)
- Querying for product totals by subcategory could be much faster [\#9](https://github.com/opencart/opencart/issues/9)
- Address book problem 1.5.3.1 [\#8](https://github.com/opencart/opencart/issues/8)
- OpenCart website is mangled on iPad \(Safari\) [\#7](https://github.com/opencart/opencart/issues/7)
- Unexpected Token / Guest Checkout [\#6](https://github.com/opencart/opencart/issues/6)
- Pointless? [\#1](https://github.com/opencart/opencart/issues/1)
**Merged pull requests:**
- Update order.php [\#653](https://github.com/opencart/opencart/pull/653) ([pine3ree](https://github.com/pine3ree))
- Correction in Breadcrumb [\#646](https://github.com/opencart/opencart/pull/646) ([valdeir2000](https://github.com/valdeir2000))
- 2Checkout new features [\#639](https://github.com/opencart/opencart/pull/639) ([craigchristenson](https://github.com/craigchristenson))
- typo [\#634](https://github.com/opencart/opencart/pull/634) ([Equotix](https://github.com/Equotix))
- limit\['value'\] instead of limits\['value'\] [\#633](https://github.com/opencart/opencart/pull/633) ([Equotix](https://github.com/Equotix))
- Possible division by zero at Weight::convert\(\) [\#623](https://github.com/opencart/opencart/pull/623) ([Hrumpa](https://github.com/Hrumpa))
- Typo [\#618](https://github.com/opencart/opencart/pull/618) ([Equotix](https://github.com/Equotix))
- Fixed typo in jQuery selector [\#605](https://github.com/opencart/opencart/pull/605) ([rickard2](https://github.com/rickard2))
- Included image in sitemap.xml [\#590](https://github.com/opencart/opencart/pull/590) ([fahmi182](https://github.com/fahmi182))
- Changing the list of folders that must be writable [\#582](https://github.com/opencart/opencart/pull/582) ([HNygard](https://github.com/HNygard))
- Banner image sort ordering [\#568](https://github.com/opencart/opencart/pull/568) ([scotteh](https://github.com/scotteh))
- Remove p.rating - getProductList\(\); [\#563](https://github.com/opencart/opencart/pull/563) ([valdeir2000](https://github.com/valdeir2000))
- catalog SQL optimisations. [\#549](https://github.com/opencart/opencart/pull/549) ([msva](https://github.com/msva))
- Update review.php [\#547](https://github.com/opencart/opencart/pull/547) ([YuriGural](https://github.com/YuriGural))
- Image manager upload is not working with Opera [\#546](https://github.com/opencart/opencart/pull/546) ([devtsit](https://github.com/devtsit))
- Store location no results colspan should be 6 [\#542](https://github.com/opencart/opencart/pull/542) ([eorza](https://github.com/eorza))
- Fix for pagination translation in customer\_online [\#541](https://github.com/opencart/opencart/pull/541) ([msva](https://github.com/msva))
- Add more security to config\_encryption [\#540](https://github.com/opencart/opencart/pull/540) ([msva](https://github.com/msva))
- add setTitle for tag in search [\#537](https://github.com/opencart/opencart/pull/537) ([fahmi182](https://github.com/fahmi182))
- Fix E\_NOTICE showing when product keyword isn't set [\#535](https://github.com/opencart/opencart/pull/535) ([dirkjanm](https://github.com/dirkjanm))
- Fixed if enable smtp mail, utf8 character errors in header. [\#533](https://github.com/opencart/opencart/pull/533) ([epiksel](https://github.com/epiksel))
- sample category and product is ready for seo url enabled [\#530](https://github.com/opencart/opencart/pull/530) ([fahmi182](https://github.com/fahmi182))
- Update upload/admin/language/english/localisation/return\_reason.php [\#504](https://github.com/opencart/opencart/pull/504) ([devtsit](https://github.com/devtsit))
- added flag for specific info [\#502](https://github.com/opencart/opencart/pull/502) ([faaliyet](https://github.com/faaliyet))
- fix for https://github.com/opencart/opencart/issues/499 [\#501](https://github.com/opencart/opencart/pull/501) ([faaliyet](https://github.com/faaliyet))
- Update upload/admin/controller/localisation/return\_reason.php [\#500](https://github.com/opencart/opencart/pull/500) ([devtsit](https://github.com/devtsit))
- Update upload/admin/view/template/catalog/filter\_form.tpl [\#495](https://github.com/opencart/opencart/pull/495) ([jcsmithy](https://github.com/jcsmithy))
- browser compatibility [\#493](https://github.com/opencart/opencart/pull/493) ([faaliyet](https://github.com/faaliyet))
- changed english wording error =\> separator convert to separator. [\#490](https://github.com/opencart/opencart/pull/490) ([hkulekci](https://github.com/hkulekci))
- Update upload/install/opencart.sql [\#489](https://github.com/opencart/opencart/pull/489) ([apisznasdin](https://github.com/apisznasdin))
- Fixed some typos [\#487](https://github.com/opencart/opencart/pull/487) ([Fogelholk](https://github.com/Fogelholk))
- A typo [\#486](https://github.com/opencart/opencart/pull/486) ([Fogelholk](https://github.com/Fogelholk))
- Klarna Fee fix [\#485](https://github.com/opencart/opencart/pull/485) ([martynas-wm](https://github.com/martynas-wm))
- breadcrump is changed to breadcrumb [\#478](https://github.com/opencart/opencart/pull/478) ([hkulekci](https://github.com/hkulekci))
- Incorrect Sort Order value in admin Catalog \> Categories list [\#477](https://github.com/opencart/opencart/pull/477) ([kenfai](https://github.com/kenfai))
- update Top Administrator permissions on sql [\#475](https://github.com/opencart/opencart/pull/475) ([epiksel](https://github.com/epiksel))
- Breadcrump patch [\#474](https://github.com/opencart/opencart/pull/474) ([hkulekci](https://github.com/hkulekci))
- Added If the customer is logged automatic review name fill [\#470](https://github.com/opencart/opencart/pull/470) ([epiksel](https://github.com/epiksel))
- .htaccess changes for robots.txt [\#468](https://github.com/opencart/opencart/pull/468) ([hkulekci](https://github.com/hkulekci))
- Added allow guest review enable/disable [\#467](https://github.com/opencart/opencart/pull/467) ([epiksel](https://github.com/epiksel))
- Added config\_review\_mail in opencart.sql [\#465](https://github.com/opencart/opencart/pull/465) ([epiksel](https://github.com/epiksel))
- refresh captcha of review form of product page when the form posted. [\#464](https://github.com/opencart/opencart/pull/464) ([hkulekci](https://github.com/hkulekci))
- Klarna update [\#463](https://github.com/opencart/opencart/pull/463) ([martynas-wm](https://github.com/martynas-wm))
- added "New Review Alert Mail" status to setting mail tab. [\#461](https://github.com/opencart/opencart/pull/461) ([hkulekci](https://github.com/hkulekci))
- Send E-Mail Notification Admin on Product Review [\#460](https://github.com/opencart/opencart/pull/460) ([epiksel](https://github.com/epiksel))
- Prevent direct access to http://.../system/logs/error.txt [\#452](https://github.com/opencart/opencart/pull/452) ([rb2](https://github.com/rb2))
- Is an account created when requesting a return? [\#445](https://github.com/opencart/opencart/pull/445) ([Fogelholk](https://github.com/Fogelholk))
- Added Image File Size Setting [\#442](https://github.com/opencart/opencart/pull/442) ([epiksel](https://github.com/epiksel))
- Update upload/admin/language/english/payment/worldpay.php [\#441](https://github.com/opencart/opencart/pull/441) ([Fogelholk](https://github.com/Fogelholk))
- read me file [\#440](https://github.com/opencart/opencart/pull/440) ([hkulekci](https://github.com/hkulekci))
- fix pull request for \#433, because mysql "order by" default is ASC. [\#437](https://github.com/opencart/opencart/pull/437) ([hkulekci](https://github.com/hkulekci))
- update Top Administrator permissions on sql [\#425](https://github.com/opencart/opencart/pull/425) ([epiksel](https://github.com/epiksel))
- Klarna Invoice fix [\#423](https://github.com/opencart/opencart/pull/423) ([martynas-wm](https://github.com/martynas-wm))
- Some PHPDoc in engine files for autocomplete [\#422](https://github.com/opencart/opencart/pull/422) ([nikita-ushakov](https://github.com/nikita-ushakov))
- mysqli.php -\> fixed wrong syntax [\#416](https://github.com/opencart/opencart/pull/416) ([Zemistr](https://github.com/Zemistr))
- Fixed option required! [\#411](https://github.com/opencart/opencart/pull/411) ([epiksel](https://github.com/epiksel))
- fix for file cache.php [\#410](https://github.com/opencart/opencart/pull/410) ([sincromaster](https://github.com/sincromaster))
- Cleanup whitespace in /system/\* [\#407](https://github.com/opencart/opencart/pull/407) ([Milow](https://github.com/Milow))
- Fixed error\_desc\_limit -\> error\_limit [\#403](https://github.com/opencart/opencart/pull/403) ([epiksel](https://github.com/epiksel))
- catalog\_desc\_limit renamed -\> list\_description\_limit [\#399](https://github.com/opencart/opencart/pull/399) ([epiksel](https://github.com/epiksel))
- fixed error\_custom\_field\_value [\#396](https://github.com/opencart/opencart/pull/396) ([epiksel](https://github.com/epiksel))
- Royal mail standard parcels [\#393](https://github.com/opencart/opencart/pull/393) ([uksitebuilder](https://github.com/uksitebuilder))
- Remove 2 Countries that are now zones - Fix UK VAT Zones [\#392](https://github.com/opencart/opencart/pull/392) ([uksitebuilder](https://github.com/uksitebuilder))
- upload/catalog/controler/common/seo\_url.php [\#389](https://github.com/opencart/opencart/pull/389) ([uksitebuilder](https://github.com/uksitebuilder))
- update Top Administrator permissions on sql [\#380](https://github.com/opencart/opencart/pull/380) ([hkulekci](https://github.com/hkulekci))
- Add Jersey & Guernsey to upload/install/opencart.sql [\#379](https://github.com/opencart/opencart/pull/379) ([uksitebuilder](https://github.com/uksitebuilder))
- Product image options not added to cart when reordered. [\#377](https://github.com/opencart/opencart/pull/377) ([mireks](https://github.com/mireks))
- Klarna Account notice fix [\#376](https://github.com/opencart/opencart/pull/376) ([martynas-wm](https://github.com/martynas-wm))
- Update upload/catalog/controller/common/seo\_url.php [\#375](https://github.com/opencart/opencart/pull/375) ([laanlabs](https://github.com/laanlabs))
- Klarna Invoice Fee [\#369](https://github.com/opencart/opencart/pull/369) ([martynas-wm](https://github.com/martynas-wm))
- Klarna module fixes [\#367](https://github.com/opencart/opencart/pull/367) ([martynas-wm](https://github.com/martynas-wm))
- Display actual file and line number where the sql error is occured. [\#366](https://github.com/opencart/opencart/pull/366) ([jimymodi](https://github.com/jimymodi))
- Default invoice prefix has been changed [\#363](https://github.com/opencart/opencart/pull/363) ([epiksel](https://github.com/epiksel))
- Update upload/system/library/language.php [\#354](https://github.com/opencart/opencart/pull/354) ([aa100](https://github.com/aa100))
- Syntax Highlighting for the CKEditor \(Source View\) with the CodeMirror Plugin [\#353](https://github.com/opencart/opencart/pull/353) ([epiksel](https://github.com/epiksel))
- Update upload/catalog/model/account/customer\_group.php [\#336](https://github.com/opencart/opencart/pull/336) ([amdev](https://github.com/amdev))
- Product filter doesn't work with multiple languages [\#325](https://github.com/opencart/opencart/pull/325) ([devtsit](https://github.com/devtsit))
- Added resize type to following modules [\#324](https://github.com/opencart/opencart/pull/324) ([hkulekci](https://github.com/hkulekci))
- Update upload/admin/language/english/payment/klarna\_invoice.php [\#323](https://github.com/opencart/opencart/pull/323) ([opencartarab](https://github.com/opencartarab))
- Update upload/admin/language/english/payment/klarna\_account.php [\#322](https://github.com/opencart/opencart/pull/322) ([opencartarab](https://github.com/opencartarab))
- Update upload/catalog/language/english/total/klarna\_fee.php [\#321](https://github.com/opencart/opencart/pull/321) ([opencartarab](https://github.com/opencartarab))
- Update upload/catalog/language/english/payment/klarna\_invoice.php [\#320](https://github.com/opencart/opencart/pull/320) ([opencartarab](https://github.com/opencartarab))
- Update upload/catalog/language/english/payment/klarna\_account.php [\#319](https://github.com/opencart/opencart/pull/319) ([opencartarab](https://github.com/opencartarab))
- image tool improvement about scale according to width, height, default [\#312](https://github.com/opencart/opencart/pull/312) ([hkulekci](https://github.com/hkulekci))
- gitignore file addition for development [\#307](https://github.com/opencart/opencart/pull/307) ([hkulekci](https://github.com/hkulekci))
- Update upload/install/view/template/step\_2.tpl [\#306](https://github.com/opencart/opencart/pull/306) ([opencartarab](https://github.com/opencartarab))
- "Notice: unserialize\(\): Error at offset 2742 of 7368 bytes in " notice f... [\#305](https://github.com/opencart/opencart/pull/305) ([hkulekci](https://github.com/hkulekci))
- changed: public with protected to bypass route parameter [\#302](https://github.com/opencart/opencart/pull/302) ([faaliyet](https://github.com/faaliyet))
- order table error fixed when DB\_PREFIX is null [\#301](https://github.com/opencart/opencart/pull/301) ([hkulekci](https://github.com/hkulekci))
- Update upload/admin/language/english/setting/setting.php [\#298](https://github.com/opencart/opencart/pull/298) ([opencartarab](https://github.com/opencartarab))
- utf8\_strtolower addition on admin side. [\#297](https://github.com/opencart/opencart/pull/297) ([hkulekci](https://github.com/hkulekci))
- Update upload/catalog/view/theme/default/template/common/header.tpl [\#296](https://github.com/opencart/opencart/pull/296) ([rokdazone](https://github.com/rokdazone))
- utf8\_strtolower addition, widely \(include system/library files\) [\#295](https://github.com/opencart/opencart/pull/295) ([hkulekci](https://github.com/hkulekci))
- Edit password fix for case sensitivity \[for all email where clause\] [\#293](https://github.com/opencart/opencart/pull/293) ([hkulekci](https://github.com/hkulekci))
- Edit password fix for case sensitivity [\#289](https://github.com/opencart/opencart/pull/289) ([opencarthelp](https://github.com/opencarthelp))
- fixed some mistakes + also removed unnecessary functions from review model [\#286](https://github.com/opencart/opencart/pull/286) ([faaliyet](https://github.com/faaliyet))
- Option Values Deleting Automatically for \#284 [\#285](https://github.com/opencart/opencart/pull/285) ([hkulekci](https://github.com/hkulekci))
- admin customer\_form history text cleared after clicked "Add History" but... [\#282](https://github.com/opencart/opencart/pull/282) ([hkulekci](https://github.com/hkulekci))
- Update upload/admin/language/english/setting/setting.php [\#279](https://github.com/opencart/opencart/pull/279) ([andrejuseu](https://github.com/andrejuseu))
- "Notice: Error: Table 'opencart.oc\_filter\_value\_description' doesn't exi... [\#276](https://github.com/opencart/opencart/pull/276) ([hkulekci](https://github.com/hkulekci))
- Validation of database prefix at install [\#275](https://github.com/opencart/opencart/pull/275) ([devtsit](https://github.com/devtsit))
- Added some of the newer countries and fixes [\#273](https://github.com/opencart/opencart/pull/273) ([ADDCreative](https://github.com/ADDCreative))
- Fix customer's cart added to admin edited order [\#269](https://github.com/opencart/opencart/pull/269) ([ADDCreative](https://github.com/ADDCreative))
- Update upload/system/library/request.php [\#266](https://github.com/opencart/opencart/pull/266) ([rokdazone](https://github.com/rokdazone))
- Fix admin getZonesByCountryId so that it only returns enabled zones [\#265](https://github.com/opencart/opencart/pull/265) ([rebdog](https://github.com/rebdog))
- Admin Customer Edit - Country problem fixed \#174 [\#260](https://github.com/opencart/opencart/pull/260) ([hkulekci](https://github.com/hkulekci))
- added catalog/filter permission to Top Administrator Group [\#258](https://github.com/opencart/opencart/pull/258) ([hkulekci](https://github.com/hkulekci))
- Fix for removing 'first' option in admin [\#252](https://github.com/opencart/opencart/pull/252) ([rebdog](https://github.com/rebdog))
- Add workaround for unpatched Internet Explorer bug [\#248](https://github.com/opencart/opencart/pull/248) ([ADDCreative](https://github.com/ADDCreative))
- Missing layout\_route entry for sitemap in database [\#244](https://github.com/opencart/opencart/pull/244) ([opencarthelp](https://github.com/opencarthelp))
- Add a php script for installation via command line [\#225](https://github.com/opencart/opencart/pull/225) ([naiquevin](https://github.com/naiquevin))
- Display preference of list or grid is not remembered between sessions. [\#222](https://github.com/opencart/opencart/pull/222) ([Ictinus](https://github.com/Ictinus))
- Fix vertical align cart block in product page [\#217](https://github.com/opencart/opencart/pull/217) ([lusever](https://github.com/lusever))
- On product page when switching tabs, viewport jumping too high. [\#205](https://github.com/opencart/opencart/pull/205) ([lusever](https://github.com/lusever))
- Fixed large file downloads and removed non-standard headers [\#187](https://github.com/opencart/opencart/pull/187) ([bull5-i](https://github.com/bull5-i))
- Only show downloads that I can download [\#185](https://github.com/opencart/opencart/pull/185) ([khflab](https://github.com/khflab))
- Fix typo in New Zealand regions in initial database [\#181](https://github.com/opencart/opencart/pull/181) ([gurubobnz](https://github.com/gurubobnz))
- Update upload/admin/view/template/common/header.tpl [\#176](https://github.com/opencart/opencart/pull/176) ([JFox-sk](https://github.com/JFox-sk))
- Add update product stock quantity to order editor [\#173](https://github.com/opencart/opencart/pull/173) ([ADDCreative](https://github.com/ADDCreative))
- Fix VAT validation in admin [\#162](https://github.com/opencart/opencart/pull/162) ([ADDCreative](https://github.com/ADDCreative))
- Fix guest checkout ignoring customer group [\#161](https://github.com/opencart/opencart/pull/161) ([ADDCreative](https://github.com/ADDCreative))
- Fix session not cleared on admin login as customer [\#157](https://github.com/opencart/opencart/pull/157) ([ADDCreative](https://github.com/ADDCreative))
- Fix add new language at admin [\#154](https://github.com/opencart/opencart/pull/154) ([devtsit](https://github.com/devtsit))
- Fix Fedex not showing error [\#149](https://github.com/opencart/opencart/pull/149) ([ADDCreative](https://github.com/ADDCreative))
- Fix admin ups template [\#136](https://github.com/opencart/opencart/pull/136) ([devtsit](https://github.com/devtsit))
- Fix typo in check logs directory is writable [\#134](https://github.com/opencart/opencart/pull/134) ([ADDCreative](https://github.com/ADDCreative))
- Update upload/install/opencart.sql [\#132](https://github.com/opencart/opencart/pull/132) ([rokdazone](https://github.com/rokdazone))
- Fix search to return more matches for products [\#131](https://github.com/opencart/opencart/pull/131) ([ADDCreative](https://github.com/ADDCreative))
- Fix horizontal scroll bar missing in Firefox [\#123](https://github.com/opencart/opencart/pull/123) ([ADDCreative](https://github.com/ADDCreative))
- Small fix at install step 3 [\#118](https://github.com/opencart/opencart/pull/118) ([devtsit](https://github.com/devtsit))
- Fix zones at install [\#117](https://github.com/opencart/opencart/pull/117) ([devtsit](https://github.com/devtsit))
- More country and zone updates [\#116](https://github.com/opencart/opencart/pull/116) ([ADDCreative](https://github.com/ADDCreative))
- Fix local zone setting [\#114](https://github.com/opencart/opencart/pull/114) ([ADDCreative](https://github.com/ADDCreative))
- "Reset your password" at admin not working [\#109](https://github.com/opencart/opencart/pull/109) ([devtsit](https://github.com/devtsit))
- Added agree return terms on return insert page [\#104](https://github.com/opencart/opencart/pull/104) ([epiksel](https://github.com/epiksel))
- Added Address Books Links to Account Module [\#102](https://github.com/opencart/opencart/pull/102) ([epiksel](https://github.com/epiksel))
- Named vqmod columns [\#96](https://github.com/opencart/opencart/pull/96) ([edgabaldi](https://github.com/edgabaldi))
- Added Montenegro and Serbia and some fixes [\#95](https://github.com/opencart/opencart/pull/95) ([ADDCreative](https://github.com/ADDCreative))
- Update upload/install/opencart.sql [\#92](https://github.com/opencart/opencart/pull/92) ([juliao](https://github.com/juliao))
- Fixed scale issue in image resize bug [\#89](https://github.com/opencart/opencart/pull/89) ([JAY6390](https://github.com/JAY6390))
- Add Jersey and Guernsey and some fixes [\#86](https://github.com/opencart/opencart/pull/86) ([ADDCreative](https://github.com/ADDCreative))
- readme changes to be pulled [\#75](https://github.com/opencart/opencart/pull/75) ([qphoria](https://github.com/qphoria))
- Expand carousel module functionalities [\#71](https://github.com/opencart/opencart/pull/71) ([erdembey](https://github.com/erdembey))
- Removed XML declaration and attributes [\#69](https://github.com/opencart/opencart/pull/69) ([ADDCreative](https://github.com/ADDCreative))
- Update Authorize.net \(AIM\) for Shipping information [\#68](https://github.com/opencart/opencart/pull/68) ([Asif-Mahmood](https://github.com/Asif-Mahmood))
- utf8\_strlen to filename in product.php [\#54](https://github.com/opencart/opencart/pull/54) ([epiksel](https://github.com/epiksel))
- Update upload/install/opencart.sql [\#53](https://github.com/opencart/opencart/pull/53) ([aa100](https://github.com/aa100))
- customer\_online: IPv6-related fix [\#52](https://github.com/opencart/opencart/pull/52) ([msva](https://github.com/msva))
- Update upload/install/opencart.sql [\#49](https://github.com/opencart/opencart/pull/49) ([ghost](https://github.com/ghost))
- Improved SQL Performance of Category Module [\#46](https://github.com/opencart/opencart/pull/46) ([chrisatomix](https://github.com/chrisatomix))
- Sending mail to customers fails when SSL enabled [\#41](https://github.com/opencart/opencart/pull/41) ([ADDCreative](https://github.com/ADDCreative))
- Customer group list colspan [\#40](https://github.com/opencart/opencart/pull/40) ([ADDCreative](https://github.com/ADDCreative))
- Abnormally large images in default theme [\#36](https://github.com/opencart/opencart/pull/36) ([ADDCreative](https://github.com/ADDCreative))
- Patch 6 [\#35](https://github.com/opencart/opencart/pull/35) ([prof-web-coding](https://github.com/prof-web-coding))
- Top Administrator You do not have permission to access [\#33](https://github.com/opencart/opencart/pull/33) ([epiksel](https://github.com/epiksel))
- Added number of order on success page [\#32](https://github.com/opencart/opencart/pull/32) ([JohnnyVega](https://github.com/JohnnyVega))
- Update upload/catalog/controller/module/category.php [\#30](https://github.com/opencart/opencart/pull/30) ([prof-web-coding](https://github.com/prof-web-coding))
- Update upload/admin/model/catalog/product.php [\#23](https://github.com/opencart/opencart/pull/23) ([opencarthelp](https://github.com/opencarthelp))
- Use default PNG compression level of 6 [\#21](https://github.com/opencart/opencart/pull/21) ([ADDCreative](https://github.com/ADDCreative))
- Removed unused CSS [\#20](https://github.com/opencart/opencart/pull/20) ([ADDCreative](https://github.com/ADDCreative))
- Add .gitignore and keep local dev passwords and settings safe \(ignore real used config.php\) [\#16](https://github.com/opencart/opencart/pull/16) ([rb2](https://github.com/rb2))
- Update upload/admin/controller/tool/backup.php [\#15](https://github.com/opencart/opencart/pull/15) ([aa100](https://github.com/aa100))
- customer\_blacklist: IPv6-related fix [\#14](https://github.com/opencart/opencart/pull/14) ([msva](https://github.com/msva))
- Fix 404 not found page breadcrumb [\#13](https://github.com/opencart/opencart/pull/13) ([ADDCreative](https://github.com/ADDCreative))
- Update upload/catalog/controller/module/language.php [\#12](https://github.com/opencart/opencart/pull/12) ([prof-web-coding](https://github.com/prof-web-coding))
- Update upload/install/opencart.sql [\#5](https://github.com/opencart/opencart/pull/5) ([prof-web-coding](https://github.com/prof-web-coding))
- Stop infomation pages being indexed twice [\#4](https://github.com/opencart/opencart/pull/4) ([ADDCreative](https://github.com/ADDCreative))
- Only products commission. [\#3](https://github.com/opencart/opencart/pull/3) ([andrejuseu](https://github.com/andrejuseu))
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|