summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: fbf218a8ef6a2f8dd174f55ed3c992ff8ba6d384 (plain)
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
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
5024
5025
5026
5027
5028
5029
5030
5031
5032
5033
5034
5035
5036
5037
5038
5039
5040
5041
5042
5043
5044
5045
5046
5047
5048
5049
5050
5051
5052
5053
5054
5055
5056
5057
5058
5059
5060
5061
5062
5063
5064
5065
5066
5067
5068
5069
5070
5071
5072
5073
5074
5075
5076
5077
5078
5079
5080
5081
5082
5083
5084
5085
5086
5087
5088
5089
5090
5091
5092
5093
5094
5095
5096
5097
5098
5099
5100
5101
5102
5103
5104
5105
5106
5107
5108
5109
5110
5111
5112
5113
5114
5115
5116
5117
5118
5119
5120
5121
5122
5123
5124
5125
5126
5127
5128
5129
5130
5131
5132
5133
5134
5135
5136
5137
5138
5139
5140
5141
5142
5143
5144
5145
5146
5147
5148
5149
5150
5151
5152
5153
5154
5155
5156
5157
5158
5159
5160
5161
5162
5163
5164
5165
5166
5167
5168
5169
5170
5171
5172
5173
5174
5175
5176
5177
5178
5179
5180
5181
5182
5183
5184
5185
5186
5187
5188
5189
5190
5191
5192
5193
5194
5195
5196
5197
5198
5199
5200
5201
5202
5203
5204
5205
5206
5207
5208
5209
5210
5211
5212
5213
5214
5215
5216
5217
5218
5219
5220
5221
5222
5223
5224
5225
5226
5227
5228
5229
5230
5231
5232
5233
5234
5235
5236
5237
5238
5239
5240
5241
5242
5243
5244
5245
5246
5247
5248
5249
5250
5251
5252
5253
5254
5255
5256
5257
5258
5259
5260
5261
5262
5263
5264
5265
5266
5267
5268
5269
5270
5271
5272
5273
5274
5275
5276
5277
5278
5279
5280
5281
5282
5283
5284
5285
5286
5287
5288
5289
5290
5291
5292
5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
5309
5310
5311
5312
5313
5314
5315
5316
5317
5318
5319
5320
5321
5322
5323
5324
5325
5326
5327
5328
5329
5330
5331
5332
5333
5334
5335
5336
5337
5338
5339
5340
5341
5342
5343
5344
5345
5346
5347
5348
5349
5350
5351
5352
5353
5354
5355
5356
5357
5358
5359
5360
5361
5362
5363
5364
5365
5366
5367
5368
5369
5370
5371
5372
5373
5374
5375
5376
5377
5378
5379
5380
5381
5382
5383
5384
5385
5386
5387
5388
5389
5390
5391
5392
5393
5394
5395
5396
5397
5398
5399
5400
5401
5402
5403
5404
5405
5406
5407
5408
5409
5410
5411
5412
5413
5414
5415
5416
5417
5418
5419
5420
5421
5422
5423
5424
5425
5426
5427
5428
5429
5430
5431
5432
5433
5434
5435
5436
5437
5438
5439
5440
5441
5442
5443
5444
5445
5446
5447
5448
5449
5450
5451
5452
5453
5454
5455
5456
5457
5458
5459
5460
5461
5462
5463
5464
5465
5466
5467
5468
5469
5470
5471
5472
5473
5474
5475
5476
5477
5478
5479
5480
5481
5482
5483
5484
5485
5486
5487
5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
5498
5499
5500
5501
5502
5503
5504
5505
5506
5507
5508
5509
5510
5511
5512
5513
5514
5515
5516
5517
5518
5519
5520
5521
5522
5523
5524
5525
5526
5527
5528
5529
5530
5531
5532
5533
5534
5535
5536
5537
5538
5539
5540
5541
5542
5543
5544
5545
5546
5547
5548
5549
5550
5551
5552
5553
5554
5555
5556
5557
5558
5559
5560
5561
5562
5563
5564
5565
5566
5567
5568
5569
5570
5571
5572
5573
5574
5575
5576
5577
5578
5579
5580
5581
5582
5583
5584
5585
5586
5587
5588
5589
5590
5591
5592
5593
5594
5595
5596
5597
5598
5599
5600
5601
5602
5603
5604
5605
5606
5607
5608
5609
5610
5611
5612
5613
5614
5615
5616
5617
5618
5619
5620
5621
5622
5623
5624
5625
5626
5627
5628
5629
5630
5631
5632
5633
5634
5635
5636
5637
5638
5639
5640
5641
5642
5643
5644
5645
5646
5647
5648
5649
5650
5651
5652
5653
5654
5655
5656
5657
5658
5659
5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
5680
5681
5682
5683
5684
5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
5696
5697
5698
5699
5700
5701
5702
5703
5704
5705
5706
5707
5708
5709
5710
5711
5712
5713
5714
5715
5716
5717
5718
5719
5720
5721
5722
5723
5724
5725
5726
5727
5728
5729
5730
5731
5732
5733
5734
5735
5736
5737
5738
5739
5740
5741
5742
5743
5744
5745
5746
5747
5748
5749
5750
5751
5752
5753
5754
5755
5756
5757
5758
5759
5760
5761
5762
5763
5764
5765
5766
5767
5768
5769
5770
5771
5772
5773
5774
5775
5776
5777
5778
5779
5780
5781
5782
5783
5784
5785
5786
5787
5788
5789
5790
5791
5792
5793
5794
5795
5796
5797
5798
5799
5800
5801
5802
5803
5804
5805
5806
5807
5808
5809
5810
5811
5812
5813
5814
5815
5816
5817
5818
5819
5820
5821
5822
5823
5824
5825
5826
5827
5828
5829
5830
5831
5832
5833
5834
5835
5836
5837
5838
5839
5840
5841
5842
5843
5844
5845
5846
5847
5848
5849
5850
5851
5852
5853
5854
5855
5856
5857
5858
5859
5860
5861
5862
5863
5864
5865
5866
5867
5868
5869
5870
5871
5872
5873
5874
5875
5876
5877
5878
5879
5880
5881
5882
5883
5884
5885
5886
5887
5888
5889
5890
5891
5892
5893
5894
5895
5896
5897
5898
5899
5900
5901
5902
5903
5904
5905
5906
5907
5908
5909
5910
5911
5912
5913
5914
5915
5916
5917
5918
5919
5920
5921
5922
5923
5924
5925
5926
5927
5928
5929
5930
5931
5932
5933
5934
5935
5936
5937
5938
5939
5940
5941
5942
5943
5944
5945
5946
5947
5948
5949
5950
5951
5952
5953
5954
5955
5956
5957
5958
5959
5960
5961
5962
5963
5964
5965
5966
5967
5968
5969
5970
5971
5972
5973
5974
5975
5976
5977
5978
5979
5980
5981
5982
5983
5984
5985
5986
5987
5988
5989
5990
5991
5992
5993
5994
5995
5996
5997
5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
6008
6009
6010
6011
6012
6013
6014
6015
6016
6017
6018
6019
6020
6021
6022
6023
6024
6025
6026
6027
6028
6029
6030
6031
6032
6033
6034
6035
6036
6037
6038
6039
6040
6041
6042
6043
6044
6045
6046
6047
6048
6049
6050
6051
6052
6053
6054
6055
6056
6057
6058
6059
6060
6061
6062
6063
6064
6065
6066
6067
6068
6069
6070
6071
6072
6073
6074
6075
6076
6077
6078
6079
6080
6081
6082
6083
6084
6085
6086
6087
6088
6089
6090
6091
6092
6093
6094
6095
6096
6097
6098
6099
6100
6101
6102
6103
6104
6105
6106
6107
6108
6109
6110
6111
6112
6113
6114
6115
6116
6117
6118
6119
6120
6121
6122
6123
6124
6125
6126
6127
6128
6129
6130
6131
6132
6133
6134
6135
6136
6137
6138
6139
6140
6141
6142
6143
6144
6145
6146
6147
6148
6149
6150
6151
6152
6153
6154
6155
6156
6157
6158
6159
6160
6161
6162
6163
6164
6165
6166
6167
6168
6169
6170
6171
6172
6173
6174
6175
6176
6177
6178
6179
6180
6181
6182
6183
6184
6185
6186
6187
6188
6189
6190
6191
6192
6193
6194
6195
6196
6197
6198
6199
6200
6201
6202
6203
6204
6205
6206
6207
6208
6209
6210
6211
6212
6213
6214
6215
6216
6217
6218
6219
6220
6221
6222
6223
6224
6225
6226
6227
6228
6229
6230
6231
6232
6233
6234
6235
6236
6237
6238
6239
6240
6241
6242
6243
6244
6245
6246
6247
6248
6249
6250
6251
6252
6253
6254
6255
6256
6257
6258
6259
6260
6261
6262
6263
6264
6265
6266
6267
6268
6269
6270
6271
6272
6273
6274
6275
6276
6277
6278
6279
6280
6281
6282
6283
6284
6285
6286
6287
6288
6289
6290
6291
6292
6293
6294
6295
6296
6297
6298
6299
6300
6301
6302
6303
6304
6305
6306
6307
6308
6309
6310
6311
6312
6313
6314
6315
6316
6317
6318
6319
6320
6321
6322
6323
6324
6325
6326
6327
6328
6329
6330
6331
6332
6333
6334
6335
6336
6337
6338
6339
6340
6341
6342
6343
6344
6345
6346
6347
6348
6349
6350
6351
6352
6353
6354
6355
6356
6357
6358
6359
6360
6361
6362
6363
6364
6365
6366
6367
6368
6369
6370
6371
6372
6373
6374
6375
6376
6377
6378
6379
6380
6381
6382
6383
6384
6385
6386
6387
6388
6389
6390
6391
6392
6393
6394
6395
6396
6397
6398
6399
6400
6401
6402
6403
6404
6405
6406
6407
6408
6409
6410
6411
6412
6413
6414
6415
6416
6417
6418
6419
6420
6421
6422
6423
6424
6425
6426
6427
6428
6429
6430
6431
6432
6433
6434
6435
6436
6437
6438
6439
6440
6441
6442
6443
6444
6445
6446
6447
6448
6449
6450
6451
6452
6453
6454
6455
6456
6457
6458
6459
6460
6461
6462
6463
6464
6465
6466
6467
6468
6469
6470
6471
6472
6473
6474
6475
6476
6477
6478
6479
6480
6481
6482
6483
6484
6485
6486
6487
6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
6500
6501
6502
6503
6504
6505
6506
6507
6508
6509
6510
6511
6512
6513
6514
6515
6516
6517
6518
6519
6520
6521
6522
6523
6524
6525
6526
6527
6528
6529
6530
6531
6532
6533
6534
6535
6536
6537
6538
6539
6540
6541
6542
6543
6544
6545
6546
6547
6548
6549
6550
6551
6552
6553
6554
6555
6556
6557
6558
6559
6560
6561
6562
6563
6564
6565
6566
6567
6568
6569
6570
6571
6572
6573
6574
6575
6576
6577
6578
6579
6580
6581
6582
6583
6584
6585
6586
6587
6588
6589
6590
6591
6592
6593
6594
6595
6596
6597
6598
6599
6600
6601
6602
6603
6604
6605
6606
6607
6608
6609
6610
6611
6612
6613
6614
6615
6616
6617
6618
6619
6620
6621
6622
6623
6624
6625
6626
6627
6628
6629
6630
6631
6632
6633
6634
6635
6636
6637
6638
6639
6640
6641
6642
6643
6644
6645
6646
6647
6648
6649
6650
6651
6652
6653
6654
6655
6656
6657
6658
6659
6660
6661
6662
6663
6664
6665
6666
6667
6668
6669
6670
6671
6672
6673
6674
6675
6676
6677
6678
6679
6680
6681
6682
6683
6684
6685
6686
6687
6688
6689
6690
6691
6692
6693
6694
6695
6696
6697
6698
6699
6700
6701
6702
6703
6704
6705
6706
6707
6708
6709
6710
6711
6712
6713
6714
6715
6716
6717
6718
6719
6720
6721
6722
6723
6724
6725
6726
6727
6728
6729
6730
6731
6732
6733
6734
6735
6736
6737
6738
6739
6740
6741
6742
6743
6744
6745
6746
6747
6748
6749
6750
6751
6752
6753
6754
6755
6756
6757
6758
6759
6760
6761
6762
6763
6764
6765
6766
6767
6768
6769
6770
6771
6772
6773
6774
6775
6776
6777
6778
6779
6780
6781
6782
6783
6784
6785
6786
6787
6788
6789
6790
6791
6792
6793
6794
6795
6796
6797
6798
6799
6800
6801
6802
6803
6804
6805
6806
6807
6808
6809
6810
6811
6812
6813
6814
6815
6816
6817
6818
6819
6820
6821
6822
6823
6824
6825
6826
6827
6828
6829
6830
6831
6832
6833
6834
6835
6836
6837
6838
6839
2003-02-26  Pierre-Alain Joye  <paj@pearfr.org>

    * ext/gd/gd.c:
      add imagesavealpha wrapper (Jukka Holappa <jukkaho@mail.student.oulu.fi>,
            2 Pierre-Alain Joye)

    * ext/gd/php_gd.h:
      add imagesavealpha wrapper (Jukka Holappa <jukkaho@mail.student.oulu.fi>,
      Pierre-Alain Joye)

2003-02-26  Rasmus Lerdorf  <rasmus@lerdorf.com>

    * main/main.c:
      MFB: Get rid of a redundant syscall on non-Windows

    * (PHP_4_3)
      main/main.c:
      Get rid of an unnecessary syscall on non-Windows.  We don't need two
      setitimer() calls here in order to reset the timer.

2003-02-26  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/exec.c
      ext/standard/exec.h:
      1) Make the output of system() binary safe
      2) Solved a memory leak when the return_value variable passed by reference
      is
         not an integer in system()/exec()/passthru().
      3) Solved a bug in exec(), which would make it append to the 2nd parameter
         (passed by reference) if the parameter is an array instead of
      overwriting it.
      4) Changed the code to use the streams code, resulting in a smaller code
      base.
      5) Various cleanups resulting in reduction of overall code base inside the
      file
         by ~ 1/3.
      6) Speed improvements of ~2.5 times compared to previous performance
      (based on
         attached PHP script).

2003-02-26  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/dba/dba.c:
      allow keys as array(group, name) for handler inifile

    * ext/dba/dba_flatfile.c:
      ws

    * ext/dba/libcdb/cdb.c:
      make it faster

    * ext/dba/libinifile/inifile.c:
      if skip param of dba_fetch is -1 stop do not restart search after last
      element

2003-02-26  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/mail.c
      main/main.c:
      - Added an extra ini setting with which extra commands can be forced to
        the sendmail deamon on a per-vhost base. The value in this ini setting
        will override all extra commands passed as the 5th parameter to mail()
        and will work in Safe Mode.

    * ext/standard/file.c:
      - Fix proto

    * ext/standard/basic_functions.c:
      - Whitespace

2003-02-26  Hartmut Holzgraefe  <hartmut@six.de>

    * (PHP_4_3)
      ext/yp/yp.c
      ext/yp/yp.c:
      MFphp5

    * ext/yp/yp.c:
      changed to emalloc just to be safe

    * scripts/ext_skel_ng/php_logo.php
      scripts/ext_skel_ng/php_resource.php:
      forgot to add these two on my last commit :(

2003-02-25  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/exec.c:
      Made shell_exec() use streams, this simplifies the code and in some cases
      makes it a little faster too.

    * ext/standard/url.c:
      MFH (forgot to put this fix into the 5.X tree).

2003-02-25  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * NEWS:
      NEWS update

    * ext/standard/file.c:
      Set fgetss() free from the length parameter

    * (PHP_4_3)
      NEWS:
      BFN: the fix was actually done by Ilia.

    * (PHP_4_3)
      ext/standard/html.c:
      MFH(r1.72): int / long change
      Fixed bug #22301 (htmlspecialchars crashes on Tru64)

2003-02-25  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/tests/file/bug22414.phpt:
      Fixed test.

    * ext/standard/exec.c
      ext/standard/tests/file/bug22414.phpt:
      Fixed bug #22414 and added a test case for it.

2003-02-25  Jani Taskinen  <sniper@iki.fi>

    * ext/odbc/config.m4:
      Cleanup

    * (PHP_4_3)
      NEWS
      NEWS
      NEWS:
      BFN

    * (PHP_4_3)
      configure.in:
      MFH: Fixed bug #21224 (apache configure fails when using
      --enable-versioning)

    * configure.in:
      - Fixed bug #21224 (apache configure fails when using --enable-versioning)

    * (PHP_4_3)
      main/php.h
      main/php_sprintf.c
      main/snprintf.c
      main/snprintf.h:
      MFH: Fixed bug #20256 (snprintf() not defined on some systems)

    * main/php.h
      main/php_sprintf.c
      main/snprintf.c
      main/snprintf.h:
      Fixed bug #20256 (snprintf() not defined)

2003-02-25  Adam Dickmeiss  <adam@indexdata.dk>

    * ext/yaz/php_yaz.c:
      Tabify

    * ext/yaz/php_yaz.c:
      yaz_search supports query type cql

2003-02-25  Jani Taskinen  <sniper@iki.fi>

    * configure.in:
      typofix

    * ext/curl/interface.c
      ext/curl/multi.c:
      (hope) fix some win32 build errors

2003-02-25  Corne' Cornelius  <cornec@reach.co.za>

    * ext/informix/CREDITS
      ext/informix/ifx.ec
      ext/informix/php_informix.h
      ext/informix/php_informix_includes.h:
      - Added Corne' Cornelius to CREDITS/Authors

2003-02-25  Jani Taskinen  <sniper@iki.fi>

    * sapi/pi3web/pi3web_sapi.c:
      Another win32 build fix.

    * sapi/activescript/php4activescript.c
      sapi/activescript/scriptengine.cpp:
      (hopefully) fix the build..

    * (PHP_4_3)
      configure.in:
      MFH: Fixed bug #14245 ('make install' fails on AIX when using --with-apxs).

    * configure.in:
      - Fixed bug #14245 ('make install' fails on AIX when using --with-apxs).

2003-02-25  Corne' Cornelius  <cornec@reach.co.za>

    * ext/informix/config.m4:
      - Changed IFX_VERSION to work with Major versions with more then one digit

2003-02-25  Jani Taskinen  <sniper@iki.fi>

    * ext/oci8/config.m4:
      fix bug #22324, libjdbcoci8.so is not necessarily needed..

2003-02-25  Ilia Alshanetsky  <ilia@prohost.org>

    * (PHP_4_3)
      NEWS:
      Bug fixing news.

    * ext/standard/ftp_fopen_wrapper.c:
      Fixed bug #22402 (opening of ftp for read/write could fail due to invalid
      return code handling).
      Solution suggested by jan@jancm.org

    * (PHP_4_3)
      ext/gd/libgd/gd.c:
      MFH (fix for crash in gdImageCopyMergeGray()).

    * ext/gd/libgd/gd.c:
      Fixed a crash in gdImageCopyMergeGray().

2003-02-25  Stig Bakken  <ssb@fast.no>

    * pear/package-PEAR.xml
      pear/PEAR/Common.php
      pear/PEAR/Packager.php
      pear/PEAR/Command/Package.php:
      - fixed <provides> generation, provides elements are now included for
        every non-private class, function and method

    * ext/tokenizer/tokenizer.c:
      - add new ZE2 tokens

2003-02-25  Ilia Alshanetsky  <ilia@prohost.org>

    * main/streams/plain_wrapper.c:
      Fixed various compiler warnings.

    * main/streams/plain_wrapper.c:
      Use native flock() whenever possible.

    * ext/standard/file.c
      main/php_streams.h
      main/streams/plain_wrapper.c:
      Added locking to streams.
      Allow PHP to automatically release locks on files when terminating the
      stream.
      Fixed bugs in the handling of the 3rd optional parameter to flock().

2003-02-24  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * main/streams/memory.c:
      Removed unnecessary asserts

    * ext/standard/filters.c:
      Fixed string.strip_tags filter so it reflects the change on php_strip_tags

    * ext/standard/file.c:
      Made fgetss() binary safe too

    * ext/standard/string.c:
      Fixed possible buffer overflow of php_strip_tags

    * ext/standard/php_string.h
      ext/standard/string.c:
      Made strip_tags() binary safe

2003-02-24  Sara Golemon  <php@alphaweb.net>

    * ext/standard/basic_functions.c
      ext/standard/basic_functions.h
      ext/standard/user_filters.c:
      Initial re-implementation of userfilters after filterchain redesign by wez.
       More userspace API to come.

2003-02-24  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/standard/file.c
      main/php_streams.h
      main/streams/cast.c
      main/streams/plain_wrapper.c
      main/streams/streams.c:
      MFB: Bunch of streams related fixes.

2003-02-24  Ilia Alshanetsky  <ilia@prohost.org>

    * (PHP_4_3)
      NEWS
      NEWS:
      Bug fixing news.

    * ext/standard/mail.c:
      Fixed bug #22355 (PHP would remove folding from Subject & To fields).

2003-02-24  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * tests/lang/bug22367.phpt:
      
      Added test case for bug #22367

    * ext/standard/reg.c:
      Forgot to fix this part

    * tests/lang/bug21600.phpt:
      Fixed the test as the result is just considered to be expected

    * (PHP_4_3)
      ext/standard/reg.c:
      MFH(r1.74): fixed an signed / unsigned issue

    * ext/standard/reg.c:
      Fixed a signed / unsigned issue.
      

2003-02-24  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      sapi/apache/config.m4:
      MFH: Possible fix for #22259 + part 1/2 for fixing AIX DSO bug

    * sapi/apache/config.m4:
      Possible fix for #22259 + part 1/2 for fixing one AIX bug..

2003-02-24  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/reg.c:
      Style fix

2003-02-24  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      tests/lang/bug21600.phpt
      tests/lang/bug22231.phpt:
      - Removing pointless tests. (both of these will be fixed in PHP 5)

    * NEWS
      NEWS:
      BFN

    * acinclude.m4:
      fix quotes

2003-02-24  Zeev Suraski  <zeev@zend.com>

    * sapi/apache2filter/apache_config.c
      sapi/apache2filter/php_functions.c
      sapi/apache2filter/sapi_apache2.c:
      (possibly) fix Win32 builds of the Apache 2 filter

2003-02-24  Hartmut Holzgraefe  <hartmut@six.de>

    * ext/yp/yp.c:
      "key" has to be zero-delimited

    * scripts/ext_skel_ng/TODO
      scripts/ext_skel_ng/dummy.gif
      scripts/ext_skel_ng/ext_skel_ng.php
      scripts/ext_skel_ng/extension.dtd
      scripts/ext_skel_ng/extension.xml
      scripts/ext_skel_ng/extension_parser.php
      scripts/ext_skel_ng/php_function.php:
      - code generation: resources and phpinfo logo
      - duplicate code elimination for prototype parsing
      - improved phpinfo block (incl. logo)
      - some input error checking
      - documentation generation for ini-directives, constants
        and resources

2003-02-24  Jani Taskinen  <sniper@iki.fi>

    * ext/informix/ifx.ec
      ext/informix/ifx.ec:
      no c++ comments

2003-02-24  Corne' Cornelius  <cornec@reach.co.za>

    * ext/informix/ifx.ec:
      (PHP ifx_errormsg) Fixed Informix bug where ifx_errormsg() would Segfault
                         on an unopened connecection and with an errorcode
      supplied

2003-02-24  Jani Taskinen  <sniper@iki.fi>

    * acinclude.m4:
      Always use the libtool which is build in the top_builddir.

    * ext/mhash/mhash.c
      ext/mhash/php_mhash.h:
      fix compile warning

2003-02-24  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/file.c
      ext/standard/tests/file/bug22382.phpt
      ext/standard/tests/file/test2.csv:
      Fixed bug #22382 (fgetcsv did not handle \" correctly).

2003-02-24  George Schlossnagle  <george@omniti.com>

    * sapi/apache/mod_php4.c:
      ws fix

    * sapi/apache/mod_php4.c:
      hopefully a fix for 19919

2003-02-24  Jani Taskinen  <sniper@iki.fi>

    * ext/standard/basic_functions.c
      ext/standard/dns.c
      ext/standard/dns.h:
      Extra paranoia checks if dn_skipname/dn_expand exist or not

2003-02-23  Jani Taskinen  <sniper@iki.fi>

    * main/fopen_wrappers.c:
      MFB: Fix for open_basedir error message

2003-02-23  Rasmus Lerdorf  <rasmus@lerdorf.com>

    * (PHP_4_3)
      main/fopen_wrappers.c
      main/streams.c:
      open_basedir fixes from David Saez

2003-02-23  Stig Bakken  <ssb@fast.no>

    * pear/packages/XML_Parser-1.0.1.tar
      pear/packages/XML_Parser-1.0.tar:
      
      - upgrading XML_Parser to 1.0.1

2003-02-23  Jani Taskinen  <sniper@iki.fi>

    * sapi/apache/libpre.c
      sapi/apache/php_apache_http.h:
      Added missing headers and $Id$ tags.

    * sapi/cgi/config9.m4:
      MFB: Fixed bug #22356 (Do not add empty -I flags).

    * (PHP_4_3)
      sapi/cgi/config9.m4:
      Fixed bug #22356 (Do not add empty -I flags).

    * ext/imap/config.m4:
      Fix for bug #22353

    * (PHP_4_3)
      NEWS:
      BFN

    * (PHP_4_3)
      sapi/apache/config.m4
      sapi/apache2filter/config.m4:
      MFH: - Fixed bug #22376 (wrong httpd.conf modified when using INSTALL_ROOT)

    * sapi/apache/config.m4
      sapi/apache2filter/config.m4
      sapi/apache2handler/config.m4:
      - Fixed bug #22376 (wrong httpd.conf modified when using INSTALL_ROOT)

2003-02-23  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * tests/classes/abstract_inherit.phpt:
      New test which currently fails

    * NEWS:
      Fix the name

2003-02-23  Jani Taskinen  <sniper@iki.fi>

    * sapi/apache2filter/EXPERIMENTAL
      sapi/apache2handler/EXPERIMENTAL:
      
      These both are experimental still. (there has been a note in config.m4
      all the time but these marker files were missing)

    * NEWS:
      Style

2003-02-22  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/dba/libinifile/inifile.c:
      Dropped optimization

2003-02-22  Wez Furlong  <wez.php@thebrainroom.net>

    * (PHP_4_3)
      NEWS:
      Correct a bug number - thanks to Philip...

2003-02-22  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/dba/libinifile/inifile.c:
      INI files are case insensitive

2003-02-22  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/basic_functions.c
      ext/standard/file.c
      ext/standard/file.h:
      Revent previous patch, adding of file_write_content() was premature.

    * ext/standard/basic_functions.c
      ext/standard/file.c
      ext/standard/file.h
      ext/standard/html.c:
      int/long change.

2003-02-22  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/dba/libinifile/inifile.c:
      Remove testcode

    * ext/dba/config.m4
      ext/dba/dba.c
      ext/dba/dba_inifile.c
      ext/dba/php_inifile.h
      ext/dba/libinifile/.cvsignore
      ext/dba/libinifile/inifile.c
      ext/dba/libinifile/inifile.h
      ext/dba/tests/dba_inifile.phpt:
      

2003-02-22  Andrey Hristov  <andrey@webgate.bg>

    * ext/standard/array.c:
      additional speedup for array_shift(). No need to rehash if the removed
      element's
      key is not scalar and elements with scalar keys are already well numbered
      (sequentially from 0) for some reason. This is the case if the leading
      elements have no scalar indexes.

2003-02-22  Wez Furlong  <wez.php@thebrainroom.net>

    * (PHP_4_3)
      NEWS:
      Squashed those ugly bugs!

2003-02-22  Andrey Hristov  <andrey@webgate.bg>

    * ext/standard/array.c:
      rehash only in case something is changed.

2003-02-22  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/mysqli_api.c:
      removed some comments

    * ext/mysqli/mysqli.c
      ext/mysqli/mysqli_api.c
      ext/mysqli/php_mysqli.h:
      Fixed bug with stmt_close (libmysql bk version 1.1477 required)
      Fixed bug with mysql_execute and float values

2003-02-22  Justin Erenkrantz  <justin@erenkrantz.com>

    * sapi/apache2handler/sapi_apache2.c:
      Add xbithack support to apache2handler SAPI.
      
      (configuration doesn't work, but that's not something new apparently.)

2003-02-22  Wez Furlong  <wez.php@thebrainroom.net>

    * (PHP_4_3)
      ext/standard/file.c
      ext/standard/tests/file/bug21131.phpt
      ext/standard/tests/file/bug22362.phpt
      ext/standard/tests/file/bug22362.phpt
      main/php_streams.h
      main/streams.c:
      Miscellaneous streams fixes, including probable fixes for:
      Bug #21131 (fopen with 'a+' and rewind() doesn't work)
      Bug #21713 (include remote files leaks temporary files + descriptors on
      Solaris)
      Bug #21185 (move_uploaded_file() does not ignore open_basedir as it
      should)
      Bug #22362 (combinations of fwrite(), fread() and fseek() produce
      unexpected results)

2003-02-21  Wez Furlong  <wez.php@thebrainroom.net>

    * main/network.c
      win32/php4dllts.dsp:
      Add comment about thread-safety of gethostbyname on win32.
      Set the correct path to the win32 config.h file in the .dsp file.

2003-02-21  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      ext/snmp/php_snmp.h
      ext/snmp/snmp.c:
      fixed headers and cleaned up a bit

    * ext/standard/basic_functions.c
      ext/standard/dns.c
      ext/standard/dns.h:
      - Fixed bug: #22339

    * ext/informix/ifx.ec
      ext/informix/php_informix_includes.h
      ext/snmp/php_snmp.h:
      MFB

    * (PHP_4_3)
      ext/informix/ifx.ec:
      ZTS build fixes, style and ws fixes

    * ext/ingres_ii/ii.c
      ext/ingres_ii/ii.h:
      ZTS fixes

    * (PHP_4_3)
      ext/informix/ifx.ec:
      Fix ZTS build

2003-02-21  David Viner  <dviner@yahoo-inc.com>

    * sapi/apache/php4apache.dsp:
      this tiny change adds the location of apache includes and libraries that
      are installed when you use the Apache Windows Installer
      (C:\Program Files\Apache Group\Apache\*).  With this patch,
      a windows developer who has used the Apache Windows Installer should be
      able to compile the Apache sapi module without any modifications to
      his/her
      installed tree.  It should have no effect whatsoever on anyone else.
      
      --dviner

2003-02-20  Rasmus Lerdorf  <rasmus@lerdorf.com>

    * README.input_filter
      ext/mbstring/mb_gpc.c
      main/SAPI.c
      main/SAPI.h
      main/php_variables.c
      main/rfc1867.c:
      An input filter might not simply strip stuff, it might also turn things
      into entities or use some other mechanism which causes the filtered data
      to be longer than the original data.  Ergo, pass in the address of the
      buffer instead so the filter is free to reallocate it.

2003-02-20  Justin Erenkrantz  <justin@erenkrantz.com>

    * ext/pgsql/pgsql.c:
      Remove C++-style comment.  (Breaks Sun Forte compiler.)

2003-02-20  Sara Golemon  <php@alphaweb.net>

    * ext/standard/php_fopen_wrapper.c:
      Reduce unnecessary filter applications when stream is (read|write) only

2003-02-20  Justin Erenkrantz  <justin@erenkrantz.com>

    * sapi/apache2handler/php_apache.h
      sapi/apache2handler/php_functions.c
      sapi/apache2handler/sapi_apache2.c:
      Clean up apache2handler SAPI.
      
      Key improvements:
      - Be streamy
      - Re-enable virtual() support
      - Set content_type correctly
      - Remove unnecessary code and reintroduce some missing code
      - Change signature from PhP to PHP

2003-02-20  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * (PHP_4_3)
      NEWS:
      BFN

    * (PHP_4_3)
      ext/mbstring/mbstring.c:
      MFH(r1.165): Fixed bug #22330 (overloaded strrpos() weirdness)

    * ext/mbstring/mbstring.c:
      Fixed bug #22330 (overloaded strrpos() gives wrong results)
      Patch by david at santinoli dot com. Thanks!

2003-02-20  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/tests/strings/sha1.phpt
      ext/standard/tests/strings/sha1raw.phpt:
      - Fixed testcase... you can never trust on RFCs it seems

2003-02-20  Hartmut Holzgraefe  <hartmut@six.de>

    * scripts/ext_skel_ng/extension_parser.php:
      put constants into C output
      do not limit int constants to numbers, C #defines are ok as strings
      foobar(void) needs special treatment in code generation

2003-02-20  Jani Taskinen  <sniper@iki.fi>

    * NEWS:
      style

2003-02-20  Corne' Cornelius  <cornec@reach.co.za>

    * (PHP_4_3)
      ext/informix/php_informix_includes.h:
      
         from 16 to 32 to prevents possible overflow

2003-02-20  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/md5.c:
      - Fixed copy and paste bug

    * NEWS
      ext/standard/md5.c
      ext/standard/sha1.c:
      - Also add the optional raw output parameter to md5_file and sha1_file.

2003-02-20  Sascha Schumann  <sascha@schumann.cx>

    * (PHP_4_3)
      ext/session/session.c:
      merge minor differences from head

2003-02-20  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      NEWS:
      style fix

    * NEWS:
      This is added in 4.3.2

    * (PHP_4_3)
      NEWS
      NEWS
      NEWS:
      BFN

    * (PHP_4_3)
      ext/pgsql/pgsql.c:
      MFH: Fixed bug: #22306 (pg_lo_seek($h, 0, PGSQL_SEEK_SET) succeeds but
      returns false)

    * ext/pgsql/pgsql.c:
      Fixed bug: #22306 (pg_lo_seek($h, 0, PGSQL_SEEK_SET) succeeds but returns
      false)

2003-02-20  Sascha Schumann  <sascha@schumann.cx>

    * NEWS
      NEWS
      NEWS:
      update

2003-02-20  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/md5.c
      ext/standard/sha1.c:
      - No need to add the \0 ourselves, the estrndup in STRINGL takes care of
        that for us.

2003-02-20  Sascha Schumann  <sascha@schumann.cx>

    * (PHP_4_3)
      ext/session/php_session.h
      ext/session/session.c:
      MFH general urlencoding
      MFH session_regenerate_id, a change which is as important as the former
      one

    * ext/session/session.c:
      generally urlencode parameters

2003-02-20  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      ext/standard/dns.c:
      MFH: - Fixed bug #22299 (gethostbyname() crash with non-existing domain on
      MacOSX)

    * ext/standard/dns.c:
      - Fixed bug #22299 (gethostbyname() crash with non-existing domain on
      MacOSX)

2003-02-20  Ilia Alshanetsky  <ilia@prohost.org>

    * (PHP_4_3)
      NEWS:
      Bug fixing news.

    * ext/standard/http_fopen_wrapper.c:
      Revert accidental commit.

    * ext/standard/exec.c
      ext/standard/http_fopen_wrapper.c:
      Fixed bug #22308 (optimized passthru, code is now ~40 times faster).

2003-02-20  Jani Taskinen  <sniper@iki.fi>

    * footer
      header:
      consistent with the used style

2003-02-19  Jon Parise  <jon@csh.rit.edu>

    * ext/rpc/skeleton/php_skeleton.h
      ext/rpc/skeleton/skeleton.c
      ext/rpc/skeleton/skeleton.h:
      Add folding markers and editor directive blocks.

2003-02-19  Rasmus Lerdorf  <rasmus@lerdorf.com>

    * ext/mbstring/mb_gpc.c
      ext/mbstring/mb_gpc.h:
      Fix mbstring input_filter

    * README.input_filter
      ext/mbstring/mb_gpc.c
      ext/mbstring/mbstring.c
      main/SAPI.c
      main/SAPI.h
      main/php_content_types.c
      main/php_variables.c
      main/rfc1867.c:
      Input Filter support.  See README.input_filter for details.

2003-02-19  Jani Taskinen  <sniper@iki.fi>

    * main/php_scandir.c
      main/php_scandir.h:
      MFB

    * (PHP_4_3)
      main/php_scandir.c
      main/php_scandir.h:
      dirent.h needs to be included always.

2003-02-19  Harald Radi  <harald.radi+coding.php@nme.at>

    * main/main.c:
      prevent xdebug from crashing

2003-02-19  Hartmut Holzgraefe  <hartmut@six.de>

    * scripts/ext_skel_ng/extension.xml
      scripts/ext_skel_ng/extension_parser.php
      scripts/ext_skel_ng/php_function.php:
      code for the special functions MINIT, MSHUTDOWN, RINIT, RSHUTDOWN, MINFO
      and for private internal C helper functions may now be embedded into
      the XML specification

2003-02-19  Wez Furlong  <wez.php@thebrainroom.net>

    * NEWS:
      typo..

    * NEWS:
      News about the ZE stream thing

2003-02-19  Hartmut Holzgraefe  <hartmut@six.de>

    * scripts/ext_skel_ng/extension.xml:
      test specifications for MINIT and friends

    * scripts/ext_skel_ng/extension.dtd:
      <code> inside <function> was supported but missing from the DTD,
      added "role" attribute to support "internal" functions like
      MINIT and stuff, "private" C functions not to be published as
      PHP functions and "public" implemenations of PHP functions

2003-02-19  Marc Boeren  <M.Boeren@guidance.nl>

    * ext/dbx/dbx_pgsql.c:
      Fix for bug #22221: pgsql version for dbx_query suppressed a warning that
      was trappable by using a user-defined error-handler. A different use of
      pgsql_getrow removed the warning and thus the need for suppressing it.

2003-02-19  Harald Radi  <harald.radi+coding.php@nme.at>

    * (PHP_4_3)
      win32/php5ts.dsw:
      remove php5ts workspace from PHP_4_3 branch

2003-02-19  Sascha Schumann  <sascha@schumann.cx>

    * sapi/thttpd/README
      sapi/thttpd/README
      sapi/thttpd/README:
      some improvements

2003-02-19  Hartmut Holzgraefe  <hartmut@six.de>

    * scripts/ext_skel_ng/ext_skel_ng.php
      scripts/ext_skel_ng/extension_parser.php
      scripts/ext_skel_ng/php_function.php:
      Microsoft Developer Studio project file (.dsp) generation added
      
      for now both config.m4 and .dsp files are generated for the simples
      case only (one .c file, one .h file, no external dependencies)

    * scripts/ext_skel_ng/README
      scripts/ext_skel_ng/ext_skel_ng.php
      scripts/ext_skel_ng/extension.dtd
      scripts/ext_skel_ng/extension.xml
      scripts/ext_skel_ng/extension_parser.php
      scripts/ext_skel_ng/php_constant.php
      scripts/ext_skel_ng/php_element.php
      scripts/ext_skel_ng/php_function.php
      scripts/ext_skel_ng/xml_stream_callback_parser.php
      scripts/ext_skel_ng/xml_stream_parser.php:
      next generation ext_skel script - initial checkin

2003-02-19  Corne' Cornelius  <cornec@reach.co.za>

    * ext/informix/ifx.ec:
      - Revert latest commit

2003-02-19  Jani Taskinen  <sniper@iki.fi>

    * main/php_ini.c:
      ws/style fixes

2003-02-19  Corne' Cornelius  <cornec@reach.co.za>

    * ext/informix/ifx.ec:
      - Added Input Descriptor Binding to be used by blobs. This fixed a bug
        where ESQL/C would cause a Segmentation fault if the first blob in a
        result is NULL or '' as soon as it gets a result with blob != NULL
      - Fixed leaks where blobs resources weren't always freed

2003-02-19  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      main/php_ini.c
      main/php_scandir.c
      main/php_scandir.h:
      MFH: prevent conflicts with other libraries (e.g. libc-client)

    * ext/standard/dir.c:
      scandir -> php_scandir, alphasort -> php_alphasort

    * main/php_ini.c
      main/php_scandir.c
      main/php_scandir.h:
      Fix the possible conflicts with other libs (like libc-client)

    * main/SAPI.h
      main/alloca.c
      main/config.nw.h
      main/fopen_wrappers.c
      main/fopen_wrappers.h
      main/internal_functions.c.in
      main/internal_functions_nw.c
      main/internal_functions_registry.h
      main/internal_functions_win32.c
      main/logos.h
      main/mergesort.c
      main/network.c
      main/php3_compat.h
      main/php_compat.h
      main/php_content_types.h
      main/php_globals.h
      main/php_ini.h
      main/php_logos.c
      main/php_logos.h
      main/php_main.h
      main/php_memory_streams.h
      main/php_network.h
      main/php_open_temporary_file.h
      main/php_reentrancy.h
      main/php_regex.h
      main/php_syslog.h
      main/php_variables.c
      main/reentrancy.c
      main/rfc1867.c
      main/rfc1867.h
      main/safe_mode.c
      main/safe_mode.h
      main/snprintf.c
      main/snprintf.h
      main/spprintf.c
      main/spprintf.h
      main/strlcat.c
      main/strlcpy.c
      main/win95nt.h
      main/streams/cast.c
      main/streams/filter.c
      main/streams/memory.c
      main/streams/php_stream_context.h
      main/streams/php_stream_filter_api.h
      main/streams/php_stream_plain_wrapper.h
      main/streams/php_stream_userspace.h
      main/streams/php_streams_int.h
      main/streams/plain_wrapper.c
      main/streams/streams.c
      main/streams/userspace.c:
      ws fixes + missing $Id$ tags, headers added

2003-02-19  Corne' Cornelius  <cornec@reach.co.za>

    * ext/informix/config.m4:
      Updated IFX_VERSION entry to work with new Version output of ESQL/C

2003-02-19  Jani Taskinen  <sniper@iki.fi>

    * NEWS:
      cleanup, documentation belongs elsewhere

2003-02-19  Ilia Alshanetsky  <ilia@prohost.org>

    * (PHP_4_3)
      NEWS:
      Bug fixing news.

    * ext/standard/http_fopen_wrapper.c:
      Fixed bug #22283 (possible crash when opening relative URLs).

2003-02-19  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      Added string.strip_tags filter.

2003-02-18  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      Fixed memory leaks on conversion failure.

    * ext/standard/filters.c:
      Revived convert filter codes

2003-02-18  Jon Parise  <jon@csh.rit.edu>

    * ext/rpc/skeleton/skeleton.c:
      Remove a stray COM reference.

2003-02-18  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/dba/libflatfile/flatfile.c:
      - wrong use of sizeof(char)
      - use define for block size
      - a bit faster

    * ext/dba/libflatfile/flatfile.c:
      coding style

    * ext/dba/libflatfile/flatfile.h:
      avoiding problems

2003-02-18  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * NEWS
      NEWS
      NEWS:
      BFN

2003-02-18  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/md5.c
      ext/standard/sha1.c
      ext/standard/tests/strings/md5.phpt
      ext/standard/tests/strings/md5raw.phpt
      ext/standard/tests/strings/sha1.phpt
      ext/standard/tests/strings/sha1raw.phpt:
      - Added new parameter to sha1() and md5() which return the digest as
        binary data. (Original patch by Michael Bretterklieber
      <mbretter@jawa.at>)
      - Added test cases for sha1() and md5() based on the testvectors in RFC
      1321
        and RFC 3174.

2003-02-18  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/mbstring/mbstring.c:
      Added description for the hand-made finite state machine.

2003-02-18  Derick Rethans  <d.rethans@jdimedia.nl>

    * run-tests.php:
      - Add check for proc_open() being available

2003-02-18  Sascha Schumann  <sascha@schumann.cx>

    * ext/session/php_session.h
      ext/session/session.c:
      Refactor new-session-id code

    * ext/session/php_session.h
      ext/session/session.c:
      Remember whether to send a cookie, so that we send out the correct
      session id.  Also improve check for active session

2003-02-18  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/rpc/com/com.c
      main/streams/streams.c:
      Fix incorrect TSRMLS_CC usage.
      Fix com_create_guid()

2003-02-18  Sascha Schumann  <sascha@schumann.cx>

    * ext/session/php_session.h
      ext/session/session.c:
      add session_regenerate_id()

2003-02-18  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/mbstring/mbstring.c:
      Fixed mb_send_mail() so that Content-Type and Content-Transfer-Encoding
      headers are overridable by additional header parameters.
      This patch fixes bug #21985 and bug #22064.

    * ext/standard/string.c:
      Fixed bug #21708 (ucfirst() trouble again)
      

    * ext/standard/file.c:
      Fixed bug #21689 (fgetcsv suppresses some characters before a separator)
      The fix is suggested by Masahiro Nakayama <masa@sfc.wide.ad.jp>
      

2003-02-18  Zeev Suraski  <zeev@zend.com>

    * win32/pwd.c
      win32/time.h:
      Commit missing stuff

2003-02-18  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/rpc/com/com.c
      ext/rpc/com/variant.h:
      Implement com_create_guid().
      Add a special case for RETVAL_VARIANT when a variant is of type
      VT_DISPATCH but has a NULL dispatch pointer.
      This kind of variant is returned by the WindowsInstaller automation
      interface.

    * configure.in
      ext/standard/basic_functions.c
      main/main.c
      main/php_ini.c:
      Implement simple stream support in the ZE scanners.

2003-02-18  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/mysqli_api.c
      ext/mysqli/mysqli_fe.c
      ext/mysqli/php_mysqli.h:
      added new function mysqli_stmt_store_result

    * ext/mysqli/tests/057.phpt:
      test for mysqli_stmt_store_result

2003-02-18  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/rpc/com/com.c:
      Implement com_indexed_prop_set() which allows setting of array-like indexed
      properties on COM objects.
      It is expected that this function will be transient, waiting for
      engine-level and then rpc-level support to be implemented so that this can
      be integrated more completely.
      I'm committing this now so that others can help develop the msi installer
      scripts that require this feature.

2003-02-18  Sara Golemon  <php@alphaweb.net>

    * ext/standard/php_fopen_wrapper.c:
      Introduce //filter target to php: wrapper to allow inline application of
      filters during fopen() style opperations

2003-02-18  Jani Taskinen  <sniper@iki.fi>

    * NEWS:
      style polizei

    * ext/pcntl/config.m4:
      getpriority() and setpriority() are in libc..

    * ext/standard/config.m4:
      nice() is part of libc, use AC_CHECK_FUNCS instead

2003-02-18  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/mysqli/mysqli_api.c:
      Fixed compiler warning.

2003-02-18  Sara Golemon  <php@alphaweb.net>

    * ext/standard/file.c
      main/streams/php_stream_filter_api.h:
      Fix stream_filter_(ap|pre)pend to allow attaching on the read and/or write
      chains.  Automagically decide what to do if noone tells us.

2003-02-18  Ilia Alshanetsky  <ilia@prohost.org>

    * NEWS:
      New function news.

    * ext/pcntl/config.m4
      ext/pcntl/pcntl.c
      ext/pcntl/php_pcntl.h:
      Added pcntl_setpriority & pcntl_getpriority(). These functions can be used
      to fetch and alter the priority of a process.

2003-02-18  Wez Furlong  <wez.php@thebrainroom.net>

    * main/streams/filter.c
      main/streams/streams.c:
      TSRMLS!

    * ext/standard/tests/filters/basic.phpt:
      Add basic test of read filters and read filter chain.

2003-02-18  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/basic_functions.c
      ext/standard/exec.c
      ext/standard/exec.h:
      By popular demand nice() is renamed to proc_nice().
      A better error message for proc_nice() failure.

2003-02-18  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/standard/file.c
      ext/standard/filters.c
      ext/standard/user_filters.c
      main/php_streams.h
      main/streams/cast.c
      main/streams/context.h
      main/streams/filter.c
      main/streams/filter_api.h
      main/streams/php_stream_context.h
      main/streams/php_stream_filter_api.h
      main/streams/php_stream_plain_wrapper.h
      main/streams/php_stream_userspace.h
      main/streams/plain_wrapper.h
      main/streams/streams.c
      main/streams/userspace.h:
      Implement new filter API, stage 1.
      This breaks user-space filters (for the time being), and those
      weird convert.* filters in ext/standard/filters.c
      
      The filters stack has been separated into one chain for read and one chain
      for write.
      
      The user-space stream_filter_append() type functions currently only
      operate
      on the read chain. They need extending to work with the write chain too.

2003-02-18  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/basic_functions.c
      ext/standard/config.m4
      ext/standard/exec.c
      ext/standard/exec.h:
      Added nice() function, which allows changing of priority for the current
      process.

2003-02-18  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/tests/056.phpt:
      new test (class which extends mysqli. currently this test fails :( )

    * ext/mysqli/mysqli.c:
      removed duplicate code

    * ext/mysqli/mysqli.c
      ext/mysqli/mysqli_api.c:
      fixed some leaks when mysql_close will be called before all stmts are
      freed.

2003-02-17  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/tests/050.phpt
      ext/mysqli/tests/051.phpt
      ext/mysqli/tests/052.phpt
      ext/mysqli/tests/053.phpt
      ext/mysqli/tests/054.phpt
      ext/mysqli/tests/055.phpt:
      additional tests for non freed objects

2003-02-17  Jani Taskinen  <sniper@iki.fi>

    * ext/snmp/config.m4:
      MFB: Sanity check.

    * (PHP_4_3)
      ext/snmp/config.m4:
      Sanity check to prevent errors in other extensions tests.

    * NEWS:
      Update

2003-02-17  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/tests/049.phpt:
      test for mysql_fetch_row (oo-style)

2003-02-17  Zeev Suraski  <zeev@zend.com>

    * ext/rpc/com/com.c
      ext/rpc/com/conversion.c
      ext/rpc/com/dispatch.c
      ext/rpc/com/variant.c
      ext/snmp/winsnmp.c
      ext/standard/file.c
      ext/standard/flock_compat.c
      ext/standard/ftp_fopen_wrapper.c
      ext/standard/http_fopen_wrapper.c
      ext/standard/pack.c
      ext/standard/rand.c
      ext/w32api/w32api.c
      ext/zlib/zlib.c
      main/fopen_wrappers.c
      main/main.c
      main/network.c
      main/php.h
      main/php_open_temporary_file.c
      sapi/apache/php_apache_http.h
      sapi/cgi/cgi_main.c
      sapi/isapi/php4isapi.c:
      Win32 build improvements

2003-02-17  Wez Furlong  <wez.php@thebrainroom.net>

    * sapi/isapi/php4isapi.c:
      Fix build under win32

2003-02-17  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/mysqli_fe.c:
      added close method/alias for result object (for compatibility with
      statement and
      link objects)

    * ext/mysqli/tests/048.phpt:
      test for OO-Implementation (bind_result)

2003-02-17  Shane Caraveo  <shane@caraveo.com>

    * ext/standard/proc_open.c:
      you know it's time to get away from the keyboard when you do this.
      
      fix my last fix

2003-02-17  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/proc_open.c:
      - Style polizei

2003-02-17  Jani Taskinen  <sniper@iki.fi>

    * ext/standard/basic_functions.c
      ext/standard/datetime.c
      ext/standard/datetime.h
      ext/standard/php_standard.h
      ext/standard/php_sunfuncs.h
      ext/standard/sunfuncs.c
      ext/standard/sunfuncs.h
      win32/php4dllts.dsp:
      - Cleaned this mess a bit:
        . Centralized the functions sunrise/sunset to php_sunrise_sunset
          to lessen duplicate code.
        . Made wrapper function php_do_date_sunrise_sunset() to lessen
          duplicate code.
        . Coding style fixes.
        . renamed sunfuncs.h -> php_sunfuncs.h

    * ext/standard/tests/time/idate.phpt:
      - These results were obviously got with TZ=GMT

    * ext/standard/tests/general_functions/sunfuncts.phpt:
      Assuming the results were created in system with Asia/Jerusalem as TZ

2003-02-17  Shane Caraveo  <shane@caraveo.com>

    * ext/standard/proc_open.c:
      fix it the right way

2003-02-17  Jani Taskinen  <sniper@iki.fi>

    * ext/standard/tests/general_functions/sunfuncts.phpt:
      override precision ini setting

2003-02-17  Shane Caraveo  <shane@caraveo.com>

    * sapi/cgi/cgi_main.c:
      prevent possible crash if used in combo with mod_gzip
      fix command line

    * ext/standard/proc_open.c:
      If you pass NULL, you do not get a NULL value, make sure it is.

2003-02-17  Jani Taskinen  <sniper@iki.fi>

    * ext/bcmath/libbcmath/src/bcmath.h
      ext/bcmath/libbcmath/src/config.h
      ext/ovrimos/ovrimos.c
      ext/standard/flock_compat.c
      win32/glob.c
      win32/time.h
      win32/winutil.c:
      - Let's be consistent with these..

2003-02-17  Wez Furlong  <wez.php@thebrainroom.net>

    * main/php_streams.h
      main/streams/context.h
      main/streams/filter_api.h
      main/streams/plain_wrapper.h
      main/streams/userspace.h:
      Move some of the streams header into supplementary files
      

2003-02-17  Shane Caraveo  <shane@caraveo.com>

    * run-tests2.php:
      bring up to date with change in run-tests

2003-02-17  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      configure.in
      main/php_version.h:
      Bump up the version.

2003-02-17  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/standard/sunfuncs.c:
      Fix compile warning

2003-02-16  Wez Furlong  <wez.php@thebrainroom.net>

    * win32/installer/setini.php:
      Some additional sanity.

    * win32/php4dllts.dsp:
      Add the sunfuncs to the .dsp file for Moshe.

    * win32/php4dllts.dsp:
      Update win32 project for streams juggling.

    * ext/standard/file.c:
      Remove unused vars

2003-02-16  Moshe Doron  <mosdoron@netvision.net.il>

    * ext/standard/basic_functions.c
      ext/standard/config.m4
      ext/standard/datetime.c
      ext/standard/datetime.h
      ext/standard/php_standard.h
      ext/standard/sunfuncs.c
      ext/standard/sunfuncs.h
      ext/standard/tests/general_functions/sunfuncts.phpt
      ext/standard/tests/time/idate.phpt:
      

2003-02-16  Wez Furlong  <wez.php@thebrainroom.net>

    * configure.in
      main/memory_streams.c
      main/streams.c
      main/user_streams.c
      main/streams/.cvsignore
      main/streams/cast.c
      main/streams/filter.c
      main/streams/memory.c
      main/streams/php_streams_int.h
      main/streams/plain_wrapper.c
      main/streams/streams.c
      main/streams/userspace.c:
      Move streams files around a bit, to ease maintenance.
      I will update the win32 .dsp in a moment.

2003-02-16  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/tests/042.phpt
      ext/mysqli/tests/047.phpt:
      fixed output

2003-02-16  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/mysqli/mysqli_api.c:
      Reverted lld -> lld patch and added explanation as to why it should not be
      done.

    * ext/mysqli/mysqli_api.c
      ext/mysqli/php_mysqli.h:
      Moved longlong conversion to a macro.

    * ext/mysqli/tests/014.phpt:
      better skip condition.

2003-02-16  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/standard/tests/file/bug21131.phpt:
      Remove bogus test.
      Append mode always causes written data to go to the end of the file,
      regardless of the current seek position.

    * ext/standard/proc_open.c
      ext/standard/proc_open.h:
      Integrate Shanes patch that allows specifying the cwd and environment
      for the child process created by proc_open().

2003-02-16  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3_1)
      NEWS:
      BFN

2003-02-16  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/tests/047.phpt:
      test for mysqli_prepare_result

2003-02-16  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/bcmath/libbcmath/src/config.h:
      Fix bcmath build under win32.

2003-02-16  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/tests/046.phpt:
      test for mysqli_stmt_affected_rows (delete command)

    * ext/mysqli/mysqli_api.c
      ext/mysqli/mysqli_fe.c
      ext/mysqli/mysqli_nonapi.c
      ext/mysqli/php_mysqli.h:
      added new function mysqli_stmt_affected_rows
      added bigint support for mysqli_affected_rows
      fixed memleak in mysqli_prepare (stmt->is_null)
      fixed return type for mysqli_connect

2003-02-16  Wez Furlong  <wez.php@thebrainroom.net>

    * run-tests.php
      ext/curl/interface.c
      ext/curl/streams.c
      ext/fbsql/php_fbsql.c
      ext/ftp/ftp.c
      ext/hyperwave/hg_comm.c
      ext/hyperwave/hw.c
      ext/imap/php_imap.c
      ext/ldap/ldap.c
      ext/mcal/php_mcal.c
      ext/mysql/php_mysql.c
      ext/odbc/php_odbc.c
      ext/rpc/com/com_wrapper.c
      ext/snmp/snmp.c
      ext/standard/dns.c
      ext/standard/file.c
      ext/standard/fsock.c
      ext/standard/ftp_fopen_wrapper.c
      ext/standard/http_fopen_wrapper.c
      ext/standard/pack.c
      ext/zlib/zlib.c
      main/fopen_wrappers.c
      main/mergesort.c
      main/network.c
      main/php.h
      main/php_open_temporary_file.c
      main/streams.c
      win32/php4dllts.dsp
      win32/sendmail.c
      win32/time.h:
      A add much more useful select(2) implementation than is provided by
      windows sockets.  The winsock implementation will only work with sockets;
      our implementation works with sockets and file descriptors.
      By association, stream_select() will now operate correctly with files,
      pipes and sockets.
      
      This change required linking against the winsock2 library.  In terms of
      compatibility, only older versions of windows 95 do not have winsock2
      installed by default.  It is available as a redistributable file, and is
      most likely installed by any OS patches (eg: Internet Explorer) applied by
      the user.
      
      Also, add a win32 compatible pipe test when opening a stream from a pipe. 
      This test will only work on NT, win2k and XP platforms.  Without this
      test, interleaved fread() and select() calls would cause the read buffer
      to be clobbered.  I will be working on a fix for this issue for win9x.

2003-02-16  Anil Madhavapeddy  <anil@recoil.org>

    * pear/PEAR/Command/Package.php:
      fix error msg typo

2003-02-16  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * sapi/cgi/cgi_main.c
      sapi/cgi/getopt.c
      sapi/cgi/php_getopt.h
      sapi/cli/getopt.c
      sapi/cli/php.1.in
      sapi/cli/php_cli.c
      sapi/cli/php_getopt.h:
      - Allow long option names
      - Update CLI's manpage
      
      

2003-02-15  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3_1)
      sapi/cgi/cgi_main.c:
      revert this

    * (PHP_4_3_1)
      main/fopen_wrappers.c:
      Revert this.

    * (PHP_4_3)
      sapi/apache2handler/.cvsignore
      sapi/apache2handler/README:
      - Remove all of it.

2003-02-15  Ian Holsman  <Ian@holsman.net>

    * (PHP_4_3)
      sapi/apache2handler/CREDITS
      sapi/apache2handler/README
      sapi/apache2handler/apache_config.c
      sapi/apache2handler/config.m4
      sapi/apache2handler/php.sym
      sapi/apache2handler/php4apache2.dsp
      sapi/apache2handler/php_apache.h
      sapi/apache2handler/php_functions.c
      sapi/apache2handler/sapi_apache2.c:
      
          After short discussion, the #php.bugs mob decided that we don't want
          this in PHP_4_3 branch. At least as long as it doesn't work as well
          (or preferrably better :) than the apache2filter SAPI does.
      
          So please remove it from the branch for now..
      
          --Jani

2003-02-15  Ilia Alshanetsky  <ilia@prohost.org>

    * NEWS:
      New feature news.

2003-02-15  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3_1)
      configure.in
      sapi/cgi/cgi_main.c:
      - correct version plus the fix.

2003-02-15  Edin Kadribasic  <edink@proventum.net>

    * (PHP_4_3_1)
      main/php_version.h:
      New version number.

2003-02-15  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      NEWS:
      BFN

2003-02-15  Stig Bakken  <ssb@fast.no>

    * (PHP_4_3)
      pear/PEAR.php
      pear/System.php
      pear/package-PEAR.xml
      pear/package.dtd
      pear/OS/Guess.php
      pear/PEAR/Autoloader.php
      pear/PEAR/Builder.php
      pear/PEAR/Command.php
      pear/PEAR/Common.php
      pear/PEAR/Config.php
      pear/PEAR/Dependency.php
      pear/PEAR/Installer.php
      pear/PEAR/Packager.php
      pear/PEAR/Registry.php
      pear/PEAR/Remote.php
      pear/PEAR/Command/Auth.php
      pear/PEAR/Command/Build.php
      pear/PEAR/Command/Common.php
      pear/PEAR/Command/Config.php
      pear/PEAR/Command/Install.php
      pear/PEAR/Command/Package.php
      pear/PEAR/Command/Registry.php
      pear/PEAR/Command/Remote.php
      pear/PEAR/Frontend/CLI.php
      pear/scripts/pear.bat
      pear/scripts/pear.in:
      - import PEAR 1.0.1

2003-02-15  Jani Taskinen  <sniper@iki.fi>

    * main/main.c:
      - Fix unsetting of open_basedir, safe_mode_exec_dir and user_dir with
        "php_admin_value <ini option> none"
      - Fixes bug #22220

2003-02-15  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/mysqli/config.m4:
      Proper lib detection.

2003-02-15  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * (PHP_4_3)
      NEWS
      NEWS:
      B.F.N.

    * main/streams.c:
      Fixed bug #22234

2003-02-15  Wez Furlong  <wez.php@thebrainroom.net>

    * run-tests.php:
      If a test does not have any data after 60 seconds of waiting, assume that
      it died a horrible death and kill it.
      This is useful on windows when a message box is popped-up during an
      automated
      test-run.

    * ext/standard/proc_open.c:
      Add optional signal parameter to proc_terminate.

    * ext/standard/basic_functions.c
      ext/standard/exec.h
      ext/standard/proc_open.c:
      Add proc_terminate() function to forcibly kill off a process created
      with proc_open().

2003-02-15  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/mysqli/tests/014.phpt:
      Fixed skip condition.

2003-02-15  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/tests/014.phpt
      ext/mysqli/tests/015.phpt:
      added skipif section (innodb-support)

2003-02-15  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * (PHP_4_3)
      ext/standard/formatted_print.c
      ext/standard/tests/strings/bug22227.phpt:
      MFH(r1.65): Fixed bug #22227
      MFH: Added test case for bug #22227

    * ext/standard/formatted_print.c
      ext/standard/tests/strings/bug22227.phpt:
      Fixed bug #22227
      Added test case for bug #22227

2003-02-15  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * sapi/cli/php_cli.c:
      fix parameter string (-R & -H)

2003-02-15  Wez Furlong  <wez.php@thebrainroom.net>

    * (PHP_4_3)
      NEWS:
      bug fixed.

2003-02-15  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * tests/lang/bug22231.phpt:
      
      Added test case for bug #22231

2003-02-15  Wez Furlong  <wez.php@thebrainroom.net>

    * (PHP_4_3)
      main/network.c:
      MFH: Fix for Bug #21809 (select() never times out during socket shutdown)

2003-02-15  Edin Kadribasic  <edink@proventum.net>

    * (PHP_4_3)
      sapi/cgi/cgi_main.c:
      Option -b needs an argument. This fixes #22229.

2003-02-15  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * ext/mysqli/tests/.cvsignore:
      Add .cvsignore for tests.

2003-02-15  Ian Holsman  <Ian@holsman.net>

    * (PHP_4_3)
      sapi/apache2handler/.cvsignore
      sapi/apache2handler/CREDITS
      sapi/apache2handler/README
      sapi/apache2handler/apache_config.c
      sapi/apache2handler/config.m4
      sapi/apache2handler/php.sym
      sapi/apache2handler/php4apache2.dsp
      sapi/apache2handler/php_apache.h
      sapi/apache2handler/php_functions.c
      sapi/apache2handler/sapi_apache2.c:
      alternate apache2 SAPI.

2003-02-14  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/mysqli/php_mysqli.h:
      Allow mysqli to be built when imap (c-client) is used.

    * ext/ftp/ftp.c
      ext/ftp/php_ftp.c
      ext/mysqli/mysqli_api.c:
      CS fixes.

    * ext/mysqli/mysqli.c
      ext/mysqli/mysqli_api.c:
      Fixed compile warnings.

2003-02-14  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/tests/045.phpt:
      test for bind_result with show

2003-02-14  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * (PHP_4_3)
      NEWS:
      Slight fix for consistency

    * (PHP_4_3)
      NEWS:
      BFN

2003-02-14  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/standard/image.c:
      a little bit slower but somewhat tricky and more flexible and it does not
      allocate static buffers anymore

2003-02-14  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * (PHP_4_3)
      ext/standard/string.c:
      Fixed wrong commit: s/&/*/

    * (PHP_4_3)
      ext/standard/string.c:
      MFH(r1.358): Fixed a str_replace() bug similar to bug #22224

    * ext/standard/string.c:
      Fixed a str_replace() bug similar to bug #22224

    * (PHP_4_3)
      ext/standard/string.c
      ext/standard/tests/strings/bug22224.phpt:
      MFH(r1.357): Fixed bug #22224
      MFH: Added test case for the bug

    * ext/standard/string.c
      ext/standard/tests/strings/bug22224.phpt:
      Fixed bug #22224 (implode changes object references in array)
      Added test case for the bug

2003-02-14  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/mysqli/mysqli_nonapi.c:
      Fixed a typo.

2003-02-14  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/mysqli_nonapi.c:
      fixed compiler warning

    * ext/mysqli/mysqli_api.c:
      fixed a bug in mysqli_fetch
      removed c++ comment (thx to Jani :)
      fixed compiler warning

2003-02-14  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/mysqli/mysqli.c
      ext/mysqli/mysqli_api.c
      ext/mysqli/mysqli_nonapi.c
      ext/mysqli/php_mysqli.h:
      Missing portion of the previous patch.

    * ext/mysqli/php_mysqli.h:
      Buncha Fixes.
       * Fixed a number of memory leaks.
       * Fixed some php_error_docref() calls that tried to print non-existent
         arguments.
       * Fixed some signed/unsigned problems.
       * Fixed the MYSQLI_FETCH_RESOURCE macro so that compilers do not complain
         about un-initialized variables.
       * CS fixes.

2003-02-14  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/mysqli_api.c:
      bind_result fix

    * ext/mysqli/mysqli.c:
      fixed a bug in prepare/bind

2003-02-14  Jani Taskinen  <sniper@iki.fi>

    * sapi/cgi/cgi_main.c:
      MFB

    * (PHP_4_3)
      sapi/cgi/cgi_main.c:
      Added missing $Id$ tag

2003-02-14  Thies C. Arntzen  <thies@thieso.net>

    * .gdbinit:
      add really nice dump_bt function for debugging in gdb

2003-02-14  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      configure.in
      ext/standard/config.m4:
      - MFH, do not add libcrypt if crypt() is provided by libc.

    * configure.in
      ext/standard/config.m4:
      - Don't add libcrypt if the crypt() function is provided already.
        (by libc, like in HP-UX)

2003-02-13  Sara Golemon  <php@alphaweb.net>

    * ext/ftp/ftp.c:
      MFB(r-1.68.2.5) Bug 22052

    * (PHP_4_3)
      ext/ftp/ftp.c:
      Buf #22052 More casual efree()ing causing segfaults

2003-02-13  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/domxml/php_domxml.c:
      pass tsrmls instead of fetching it always

2003-02-13  Wez Furlong  <wez.php@thebrainroom.net>

    * main/streams.c:
      MFB: Fix for bug #22199

    * (PHP_4_3)
      main/streams.c:
      Fix for Bug #22199 (fputs() + fgets() destroys readbuffer for non-seekable
      streams).

2003-02-13  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      NEWS:
      typofix

2003-02-13  Sara Golemon  <php@alphaweb.net>

    * NEWS
      ext/ftp/ftp.c:
      Bug #22059. ftp_chdir() causes segfault.  efree(ftp->pwd) was being called
      without knowing for certain that ftp->pwd
      actually pointed anywhere.

2003-02-13  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * sapi/cgi/cgi_main.c:
      fix non FCGI build

2003-02-13  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/tests/strings/bug22187.phpt:
      
      Added test case for bug #22187.

    * main/snprintf.c:
      Modified fix for bug #22187 so that it does not affect handling of numbers
      represented in scientific notation.

2003-02-13  Jani Taskinen  <sniper@iki.fi>

    * ext/standard/tests/strings/crypt.phpt:
      
      Added test for those different crypt() methods. Hopefully I got the
      results right.

2003-02-13  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/tests/connect.inc:
      include file for test

2003-02-13  Shane Caraveo  <shane@caraveo.com>

    * sapi/cgi/cgi_main.c:
      There is *absolutely no* definitive way to know if argv0 is the
      actual php script, or if it is the beginning of a query string.
      Additionaly, passing parameters on the command line is
      not part of CGI spec, and is not required by either
      Apache or IIS.  So I have removed that code altogether,
      and done some further cleanup.  Also fix pre4.3 behaviour if
      fix_pathinfo=0.
      I've tested with IIS and Apache 1.3.27 on w2k and RH 7.3.

2003-02-13  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/rpc/com/variant.c:
      Fixed warnings.

2003-02-13  Wez Furlong  <wez.php@thebrainroom.net>

    * main/php_open_temporary_file.c:
      Another IS_SLASH fix.

2003-02-13  Ilia Alshanetsky  <ilia@prohost.org>

    * (PHP_4_3)
      NEWS:
      Bug fixing news.

    * ext/standard/formatted_print.c
      ext/standard/tests/strings/bug22207.phpt:
      Fixed bug #22207 (e notation in *printf would be missing a 0 when there is
      no exponent).
      Added a test case for the bug.

2003-02-13  Wez Furlong  <wez.php@thebrainroom.net>

    * main/streams.c:
      A probable cure for many getcwd/relative include related problems for
      win32.

2003-02-13  Ilia Alshanetsky  <ilia@prohost.org>

    * main/spprintf.c:
      PAD() macro didn't increase the buffer size resulting in loss of the
      padding.

2003-02-13  Edin Kadribasic  <edink@proventum.net>

    * ext/mysqli/mysqli_api.c:
      Use my_ulonglong instead of unsigned long long to make msvc++ happy.

2003-02-13  Jani Taskinen  <sniper@iki.fi>

    * NEWS:
      change history

    * (PHP_4_3)
      NEWS:
      altering history..

2003-02-13  Harald Radi  <harald.radi+coding.php@nme.at>

    * (PHP_4_3)
      ext/standard/info.c:
      add missing include

2003-02-13  Edin Kadribasic  <edink@proventum.net>

    * ext/mysqli/.cvsignore:
      Adding missing .cvsignore

2003-02-13  Ilia Alshanetsky  <ilia@prohost.org>

    * main/streams.c:
      Fixed a typo.

    * main/streams.c:
      Simplified the mode validation code & added support for read+write mode to
      'x' mode.

    * ext/rpc/com/variant.c:
      Added missing header needed for rpc_error().

2003-02-13  Wez Furlong  <wez.php@thebrainroom.net>

    * main/streams.c:
      Clarify error message.

2003-02-13  Edin Kadribasic  <edink@proventum.net>

    * ext/mysqli/mysqli.dsp:
      Initial windows project file

2003-02-13  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/ftp_fopen_wrapper.c
      ext/standard/http_fopen_wrapper.c
      main/streams.c:
      Added 'x' mode for fopen() used on local files. This mode will create a new
      file only if a file does not already exist (O_CREAT|O_EXCL).

2003-02-13  Wez Furlong  <wez.php@thebrainroom.net>

    * main/network.c:
      Potential fixes for #21809 and #22099.

    * ext/standard/php_fopen_wrapper.c:
      Use FILE*-less implementation for php://(stdin|stdout|stderr)

    * (PHP_4_3)
      ext/standard/http_fopen_wrapper.c:
      partial MFH: avoid problems with auto_detect_line_endings.

    * main/php_streams.h
      main/streams.c:
      Moving away from ANSI stdio for plain files.

    * ext/standard/http_fopen_wrapper.c:
      Avoid problems with chunk_size and auto_detect_line_endings.

    * (PHP_4_3)
      ext/standard/config.m4:
      MFH: cli should be allowed to use chroot() function.

    * ext/standard/config.m4:
      cli should be allowed to have the chroot() function.

    * main/streams.c:
      Whitespace-fix these goto labels.

2003-02-13  Uwe Steinmann  <uwe@steinmann.cx>

    * (PHP_4_3)
      NEWS
      ext/hwapi/hwapi.cpp:
      - Some functions with objects as its parameters didn't recognize them
        as such

2003-02-13  Wez Furlong  <wez.php@thebrainroom.net>

    * win32/installer/gen-nsis.php:
      Update installer so that no extensions are enabled by default.

2003-02-13  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/tests/001.phpt:
      removed warnings (unused vars)

2003-02-13  Uwe Steinmann  <uwe@steinmann.cx>

    * ext/hwapi/hwapi.cpp:
      - added more missing strcmp()

2003-02-13  Jani Taskinen  <sniper@iki.fi>

    * sapi/apache/config.m4:
      Added HAVE_APACHE define.

    * (PHP_4_3)
      ext/standard/image.c
      ext/standard/php_image.h
      ext/standard/tests/image/bug13213.phpt
      ext/standard/tests/image/getimagesize.phpt
      ext/standard/tests/image/image_type_to_mime_type.phpt
      ext/standard/tests/image/test1pix.jp2:
      - MFH: improved jpeg 2000 and wbmp support for getimagesize()

    * NEWS:
      Merged these to 4.3.x branch

    * ext/standard/image.c:
      ws fix

    * (PHP_4_3)
      NEWS:
      clean..

2003-02-13  Sascha Schumann  <sascha@schumann.cx>

    * sapi/thttpd/thttpd_patch:
      include limits.h for portability

    * sapi/thttpd/config.m4:
      portability work

2003-02-13  Wez Furlong  <wez.php@thebrainroom.net>

    * (PHP_4_3)
      NEWS:
      Fixed that one...

2003-02-13  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/tests/042.phpt
      ext/mysqli/tests/043.phpt
      ext/mysqli/tests/044.phpt:
       new tests

2003-02-13  Wez Furlong  <wez.php@thebrainroom.net>

    * main/streams.c:
      Fix for Bug #21815 (fpassthru ignored buffered data but then complained
      anyway)

2003-02-13  Sara Golemon  <php@alphaweb.net>

    * (PHP_4_3)
      ext/standard/http_fopen_wrapper.c:
      Reverting earlier patch to reintroduce buggy behavior (yes, you heard that
      right) of filtered http streams in favor of
      performance.  This has little consequence given limited filter support in
      4.3 branch.  Filters will be redesigned in
      5.0 release. For more information see Wez, Ilia, or myself.

2003-02-13  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/mysqli_api.c
      ext/mysqli/mysqli_fe.c
      ext/mysqli/php_mysqli.h:
      added new function int mysql_get_server_version
      this function is available since libmysql change set 1.1450 (2002-02-13)

2003-02-12  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/mysqli_fe.c:
      changed function entries for statements

2003-02-12  Ilia Alshanetsky  <ilia@prohost.org>

    * (PHP_4_3)
      NEWS
      NEWS:
      Bug fixing news.

    * ext/fbsql/php_fbsql.c:
      Fixed bug #22191 (frontbase build was broken for people using older
      versions).

    * main/snprintf.c:
      Fixed bug #22187 (spprintf function did not handle floats correctly).

2003-02-12  Sascha Schumann  <sascha@schumann.cx>

    * main/spprintf.c:
          - trims +100 lines of code from spprintf.c
          - introduces an overflow detection in STR_TO_DEC
          - eliminates dead code (e.g. assert(foo); if (foo) {..})
          - removes unused macros from the original code
          - simplifies code (e.g. cc was completely dropped)
          - improves run-time performance
      
            The max_len feature is never used in our code base.
            Nevertheless, cpu cycles were spent on each string
            operation to check the current length against max_len which
            is quite inefficient.  Thus, I've moved the check to
            vspprintf where it is applied only once per call.

2003-02-12  Mark L. Woodward  <mlwmohawk@mohawksoft.com>

    * ext/msession/config.m4:
      Fix for GCC 3

2003-02-12  Jani Taskinen  <sniper@iki.fi>

    * sapi/apache/config.m4:
      Fixed the "member fd in BUFF" test for --with-apxs builds

2003-02-12  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/mysqli/config.m4:
      - Let's add the config.m4 file too :-)

2003-02-12  Jani Taskinen  <sniper@iki.fi>

    * sapi/cli/.cvsignore:
      added missing entry

    * (PHP_4_3)
      NEWS:
      add blame tag

2003-02-12  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/url_scanner_ex.c
      ext/standard/url_scanner_ex.re:
      Fixed bug #22048 (incorrect insertion of session id when tabs are used to
      separate tag elements).

2003-02-12  Uwe Steinmann  <uwe@steinmann.cx>

    * ext/hwapi/hwapi.cpp:
      - Fixed compile errors and some oddities like missing strcmp

2003-02-12  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/tests/036.phpt
      ext/mysqli/tests/037.phpt
      ext/mysqli/tests/038.phpt
      ext/mysqli/tests/039.phpt
      ext/mysqli/tests/040.phpt
      ext/mysqli/tests/041.phpt:
      added new tests

    * ext/mysqli/mysqli_api.c
      ext/mysqli/mysqli_fe.c
      ext/mysqli/php_mysqli.h:
      removed function mysql_num_warnings (libmysql change).

2003-02-12  Jani Taskinen  <sniper@iki.fi>

    * sapi/cli/Makefile.frag
      sapi/cli/config.m4
      sapi/cli/php.1
      sapi/cli/php.1.in:
      "Generate" the man page so that it gets correct version always.

    * NEWS:
      Man page is added in 4.3.1, moved this entry to branch

    * sapi/cli/Makefile.frag
      sapi/cli/config.m4:
      - Added the man page installation

    * (PHP_4_3)
      Makefile.global:
      MFH: Use $(INSTALL) for installing shared extensions.

    * ext/yaz/config.m4:
      Fix obvious errors..

    * NEWS:
      news news news..

2003-02-12  Georg Richter  <georg.richter@phpev.de>

    * ext/mysqli/tests/001.phpt
      ext/mysqli/tests/002.phpt
      ext/mysqli/tests/003.phpt
      ext/mysqli/tests/004.phpt
      ext/mysqli/tests/005.phpt
      ext/mysqli/tests/006.phpt
      ext/mysqli/tests/007.phpt
      ext/mysqli/tests/008.phpt
      ext/mysqli/tests/009.phpt
      ext/mysqli/tests/010.phpt
      ext/mysqli/tests/011.phpt
      ext/mysqli/tests/012.phpt
      ext/mysqli/tests/013.phpt
      ext/mysqli/tests/014.phpt
      ext/mysqli/tests/015.phpt
      ext/mysqli/tests/016.phpt
      ext/mysqli/tests/017.phpt
      ext/mysqli/tests/018.phpt
      ext/mysqli/tests/019.phpt
      ext/mysqli/tests/020.phpt
      ext/mysqli/tests/021.phpt
      ext/mysqli/tests/022.phpt
      ext/mysqli/tests/023.phpt
      ext/mysqli/tests/024.phpt
      ext/mysqli/tests/025.phpt
      ext/mysqli/tests/026.phpt
      ext/mysqli/tests/027.phpt
      ext/mysqli/tests/028.phpt
      ext/mysqli/tests/029.phpt
      ext/mysqli/tests/030.phpt
      ext/mysqli/tests/031.phpt
      ext/mysqli/tests/032.phpt
      ext/mysqli/tests/033.phpt
      ext/mysqli/tests/034.phpt
      ext/mysqli/tests/035.phpt:
      adding a few tests

    * ext/mysqli/CREDITS
      ext/mysqli/EXPERIMENTAL
      ext/mysqli/TODO
      ext/mysqli/mysqli.c
      ext/mysqli/mysqli_api.c
      ext/mysqli/mysqli_fe.c
      ext/mysqli/mysqli_nonapi.c
      ext/mysqli/php_mysqli.h:
      initial upload

2003-02-11  Sascha Schumann  <sascha@schumann.cx>

    * configure.in:
      supply mandir to makefile

2003-02-11  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * (PHP_4_3)
      main/SAPI.c:
      MFH: reverted my patch & applying a new patch by Stefan Esser

2003-02-11  Ilia Alshanetsky  <ilia@prohost.org>

    * (PHP_4_3)
      NEWS:
      Bug fixing news.

    * ext/imap/php_imap.c:
      Fixed bug #22048 (crash in imap_headers when the e-mail contains an
      abnormally large number of special characters).

    * NEWS:
      New function news.

    * ext/standard/basic_functions.c
      ext/standard/php_string.h
      ext/standard/string.c:
      Added strpbrk(), which is essentially a wrapper around C's strpbrk function
      that allows searching through a string for a character list.

2003-02-11  Stefan Esser  <s.esser@e-matters.de>

    * main/SAPI.c:
      size matters not.

    * main/SAPI.c:
      8 + 20 + 1 + 1 = 30
      
      There was no Bufferoverflow on 64bit systems.
      
      And the "fix" broke the header code on systems with old style snprintf.

2003-02-11  Jani Taskinen  <sniper@iki.fi>

    * configure.in
      build/buildcheck.sh:
      - Fixed some weird crashes causd by the new default behaviour
        of libtool 1.4.3
      - Require libtool 1.4.3 or newer from now on.

2003-02-11  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * sapi/cli/php_cli.c:
      Make that clear

    * sapi/cli/php.1:
      Document -H added by Ilia

    * main/spprintf.c:
      speed up

2003-02-11  Melvyn Sopacua  <msopacua@idg.nl>

    * ext/xslt/TODO:
      Update time

2003-02-11  Ian Holsman  <Ian@holsman.net>

    * sapi/apache2handler/.cvsignore
      sapi/apache2handler/CREDITS
      sapi/apache2handler/README
      sapi/apache2handler/apache_config.c
      sapi/apache2handler/config.m4
      sapi/apache2handler/php.sym
      sapi/apache2handler/php4apache2.dsp
      sapi/apache2handler/php_apache.h
      sapi/apache2handler/php_functions.c
      sapi/apache2handler/sapi_apache2.c:
      initial checkin of the apache2 SAPI using a handler instead of filters.
      TBD: src highlighting
           better post handling

2003-02-11  Ilia Alshanetsky  <ilia@prohost.org>

    * sapi/cli/php_cli.c:
      Added -H option to CLI binary. This option can be used to hide any
      arguments
      including the script name passed to the CLI binary.

2003-02-11  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      NEWS
      NEWS:
      fugbix news

2003-02-11  Zeev Suraski  <zeev@zend.com>

    * ext/rpc/rpc.c:
      Fix random crashes

2003-02-11  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/mbstring/mbstring.c:
      Fixed ZTS build

2003-02-11  Jani Taskinen  <sniper@iki.fi>

    * ext/readline/config.m4:
      - There's no point in allowing using both --with-readline and
      --with-libedit
        the same time. Prefer --with-readline.
      - Use PHP_ADD_LIBRARY when there is no path available.

    * (PHP_4_3)
      NEWS:
      Moved one entry from HEAD here..

    * NEWS:
      moved entry to branch NEWS

    * (PHP_4_3)
      ext/ingres_ii/ii.c:
      MFH: - Fixed bug: #21549 (problem with Ingres II persistent connections)

    * ext/ingres_ii/ii.c:
      - Fixed bug: #21549 (problem with Ingres II persistent connections)

2003-02-11  Sascha Schumann  <sascha@schumann.cx>

    * sapi/apache/config.m4:
      move check to proper place

    * sapi/apache/config.m4
      sapi/apache/mod_php4.c:
      Detect whether BUFFs contain a fd element. IBM is hiding the actual
      descriptor behind a void *, so we just disable this for IBM servers

2003-02-11  Frank M. Kromann  <frank@kromann.info>

    * ext/mssql/php_mssql.c
      ext/mssql/php_mssql.c:
      Bug #20426. Convert SMALLDATETIME correct

2003-02-11  Stig Bakken  <ssb@fast.no>

    * pear/Makefile.frag:
      - clean up so Jani is not so confused

2003-02-11  Sascha Schumann  <sascha@schumann.cx>

    * sapi/thttpd/thttpd_patch:
      Add "log to stdout" feature

2003-02-11  Harald Radi  <harald.radi+coding.php@nme.at>

    * ext/rpc/handler.h
      ext/rpc/rpc.c
      ext/rpc/rpc.h:
      clean up source and improve hashing for implicitly
      created objects (aka return values)

    * ext/rpc/com/com.c
      ext/rpc/com/com.h:
      improved reverse lookup of ProgID based on an IDispatch pointer

2003-02-11  Sascha Schumann  <sascha@schumann.cx>

    * php.ini-dist
      php.ini-recommended:
      update regarding session.save_path

    * ext/session/mod_files.c:
      support setting the filemode using session.save_path

    * ext/session/php_session.h
      ext/session/session.c:
      use appropiate prefixes in the ps_module structure so we don't clash
      with syscalls

2003-02-11  Jani Taskinen  <sniper@iki.fi>

    * NEWS:
      fix news entry per for file() parameter..

    * (PHP_4_3)
      NEWS:
      dots..I love ya..

    * NEWS:
      Blah

    * NEWS:
      krhm..

2003-02-10  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/rpc/com/com_wrapper.c:
      fix rpc_error call

2003-02-10  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/file.c
      ext/standard/file.h:
      Merged the flags for the file() function into a single flag.

2003-02-10  Harald Radi  <harald.radi+coding.php@nme.at>

    * ext/rpc/handler.h
      ext/rpc/php_rpc.h
      ext/rpc/rpc.c
      ext/rpc/rpc.h
      ext/rpc/rpc_proxy.c
      ext/rpc/com/com.c
      ext/rpc/com/com_wrapper.c
      ext/rpc/com/conversion.c
      ext/rpc/com/variant.c
      ext/rpc/com/variant.h:
      a bunch of fixes

    * ext/rpc/skeleton/skeleton.c:
      s/com/skeleton/ is not always a good idea

2003-02-10  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/rpc/com/com.c:
      byref really means that we want the zval...

2003-02-10  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * main/SAPI.c:
      Fixed possible snprintf problem

    * (PHP_4_3)
      main/SAPI.c:
      MFH: fixed possible buffer overflow in 64bit systems

    * main/SAPI.c:
      Fixed possible buffer overflow in 64bit systems

    * NEWS
      NEWS:
      dot dot dot..

    * NEWS:
      MFB: Fixed typo

    * (PHP_4_3)
      NEWS:
      Fixed typo

2003-02-10  Sara Golemon  <php@alphaweb.net>

    * (PHP_4_3)
      NEWS:
      Bug 22141

2003-02-10  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * main/SAPI.c:
      Jani happification

    * NEWS:
      New function

2003-02-10  Sara Golemon  <php@alphaweb.net>

    * (PHP_4_3)
      ext/standard/string.c:
      Partial MFH.  Deprecated BM algo for str_replace can hang execution.  See
      Bug#22141

2003-02-10  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * sapi/apache2filter/sapi_apache2.c:
      Removed unnecessary code

    * ext/zlib/php_zlib.h
      ext/zlib/zlib.c
      main/SAPI.c:
      Fixed zlib.output_compression so it can work even if zlib extension is
      built as shared

2003-02-10  Melvyn Sopacua  <msopacua@idg.nl>

    * Makefile.global:
      MFB: disable output buffering

    * (PHP_4_3)
      Makefile.global:
      Make sure we're not buffering stuff

2003-02-10  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/rpc/com/com.c:
      Implement com_describe

2003-02-10  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      acinclude.m4
      config.guess
      config.sub
      configure.in
      ltmain.sh:
      - MFH: libtool upgrade to 1.4.3

    * acinclude.m4
      configure.in
      ltmain.sh:
      - Updated libtool to 1.4.3 which has test for the sed problem..

2003-02-10  Jon Parise  <jon@csh.rit.edu>

    * ext/pgsql/pgsql.c:
      Correct the spelling of 'supported'.

2003-02-10  Stig Bakken  <ssb@fast.no>

    * pear/PEAR.php:
      - update PEAR::isError phpdoc

    * pear/PEAR.php:
      - PEAR::isError accepts second parameter that will be matched against
        the error code.  PEAR::isError($obj, FOO) will return true if $obj
        is an error object, and $obj->getCode() returns FOO.

    * pear/install-pear.txt:
      - the "a" in "pear" is "application" now

2003-02-10  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/rpc/com/com_wrapper.c:
      Error reporting clean up

    * ext/rpc/rpc.c:
      Newly created objects should use a separate function_table from the global
      class entry table.
      For objects instantiated via new, make sure that intern->function_table
      uses the newly created table when the class is registered.
      For generic per-object hashing, copy the ce->function_table into
      intern->function_table.

    * ext/rpc/com/com.c
      ext/rpc/com/com_wrapper.c:
      Error reporting leaks and cleanup

2003-02-10  Zeev Suraski  <zeev@zend.com>

    * tests/lang/bug21961.phpt:
      Fix the test

2003-02-10  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/openssl/openssl.c:
      Add additional optional parameter to openssl_pkcs7_encrypt to specify the
      cipher.  The cipher can be one of the constants listed below.
      
      Based on a patch from:
      stefan at cuba dot ionum dot ch
      
       	OPENSSL_CIPHER_RC2_40,   (the default)
       	OPENSSL_CIPHER_RC2_128,
       	OPENSSL_CIPHER_RC2_64,
       	OPENSSL_CIPHER_DES,
       	OPENSSL_CIPHER_3DES,
      
      proto bool openssl_pkcs7_encrypt(string infile, string outfile,
         mixed recipcerts, array headers [, long flags [, long cipher]])

2003-02-10  Harald Radi  <harald.radi+coding.php@nme.at>

    * (PHP_4_3)
      NEWS:
      18 times the speed of light

2003-02-10  Hartmut Holzgraefe  <hartmut@six.de>

    * ext/fdf/fdf.c:
      proto fixes

2003-02-10  Jani Taskinen  <sniper@iki.fi>

    * ext/notes/php_notes.c:
      some win32 fixes by Kai

2003-02-10  Wez Furlong  <wez.php@thebrainroom.net>

    * win32/installer/gen-nsis.php
      win32/installer/setini.php:
      Fix php.ini customization.
      Apparently, it seems that running the php script with output captured to
      the log prevented it from working correctly.
      
      Also, deletes the php.ini when uninstalled.
      
      TODO: The defaults install and activate all extensions.  This is a problem
      for those extension that require non-bundled .dlls (such as OCI).

2003-02-09  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      sapi/nsapi/nsapi.c:
      MFH (ws fixes, but merged to ease any fix patch merging)

    * sapi/nsapi/nsapi.c:
      style, ws

    * sapi/nsapi/nsapi.c:
      Some compilers puke on these..

    * (PHP_4_3)
      sapi/nsapi/nsapi.c:
      MFH: Fixed _SERVER[] variables, memleaks

2003-02-09  Harald Radi  <harald.radi+coding.php@nme.at>

    * ext/rpc/rpc.c:
      fix a memleak

2003-02-09  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/standard/file.c:
      ZTS fix

2003-02-09  Jani Taskinen  <sniper@iki.fi>

    * NEWS:
      We move, fix, change or add stuff

    * (PHP_4_3)
      NEWS:
      sex with punctuation mark..

2003-02-09  Kai Schröder  <mail@kaischroeder.net>

    * ext/standard/datetime.c
      ext/standard/datetime.c:
      fix for #17928

2003-02-09  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/rpc/com/com.c
      ext/rpc/com/com_wrapper.c
      ext/rpc/com/variant.h:
      Fix various little leaks and segfaults.
      Fix scripts like this:
      $obj = new COM('Foo');
      $obj2 = $obj->get_object();
      $obj2->method();  // <-- would segfault here

    * ext/rpc/handler.h
      ext/rpc/rpc.c:
      Add get_class_name handler so that the current var_dump implementation does
      not segfault.
      Add a generic rpc_object_from_data() function for generating rpc objects
      from C code (as discussed with Harald).

    * ext/rpc/rpc_proxy.c:
      Fix some warnings

2003-02-09  Sascha Schumann  <sascha@schumann.cx>

    * main/SAPI.c
      sapi/apache/mod_php4.c
      sapi/thttpd/thttpd.c:
      use SUCCESS/FAILURE instead of 0/-1

2003-02-09  Ilia Alshanetsky  <ilia@prohost.org>

    * (PHP_4_3)
      NEWS:
      Bug fixing news.

    * NEWS:
      New features.

    * ext/standard/basic_functions.c
      ext/standard/file.c
      ext/standard/file.h
      main/php_streams.h
      main/streams.c:
      Added feature request #9173 (added stream_get_line(), this function will
      read either the specified number of bytes or until the ending string is
      found).

    * ext/standard/file.c:
      Added feature request #17983 (optional parameter to mkdir() that makes
      directory creation recursive).
      Fixed prototype for file() function.

2003-02-09  Jani Taskinen  <sniper@iki.fi>

    * NEWS:
      order, style..

2003-02-09  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/file.c:
      Added feature request #14097 (option allowing file() command not to include
      line endings in it's output. As well as another option, which allows blank
      lines to be excluded from the output).

2003-02-09  Jani Taskinen  <sniper@iki.fi>

    * ext/dba/config.m4:
      break: First one not needed, second missing.

2003-02-09  Shane Caraveo  <shane@caraveo.com>

    * NEWS:
      news entry for previous commit

2003-02-09  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      ext/mime_magic/mime_magic.c
      ext/standard/aggregation.c
      ext/standard/basic_functions.c
      ext/standard/image.c
      main/SAPI.c
      main/output.c:
      MFH: fixed compile failures when ZLIB/PCRE are compiled as shared in same
      build.

    * ext/mime_magic/mime_magic.c
      ext/standard/aggregation.c
      ext/standard/basic_functions.c
      ext/standard/image.c
      main/SAPI.c
      main/output.c:
      Fixed compile failures when ZLIB / PCRE are compiled as shared
      extensions in same build.

    * ext/standard/aggregation.c:
      Let this compile even if PCRE is compiled as shared in same build.

    * ext/pcre/config.m4:
      Fixed bug #22131, enable use of shared lib with pcre.

2003-02-09  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/gd/libgd/gd.c:
      Kill some warnings

    * ext/gd/gd_bundled.dsp:
      XBM for win

2003-02-09  Kai Schröder  <mail@kaischroeder.net>

    * ext/standard/tests/file/003-win32.phpt:
      shane added is_executable() for windows last night

    * ext/standard/tests/file/003.phpt:
      reverting to version 1.5; shane added is_executable() for windows last
      night

    * ext/standard/tests/general_functions/007.phpt
      ext/standard/tests/general_functions/007.phpt:
      newlines changed

    * ext/standard/tests/general_functions/getopt.phpt
      ext/standard/tests/general_functions/getopt.phpt:
      getopt() is currently not available on Windows

    * (PHP_4_3)
      ext/standard/tests/file/001-win32.phpt
      ext/standard/tests/file/001.phpt:
      there are no symlinks on Windows

    * ext/standard/tests/file/001-win32.phpt
      ext/standard/tests/file/001.phpt:
      
      there are no symlinks on Windows

    * ext/standard/tests/file/003-win32.phpt
      ext/standard/tests/file/003.phpt:
      is_executable() does not exist on Windows

    * ext/standard/tests/file/003-win32.phpt
      ext/standard/tests/file/003-win32.phpt
      ext/standard/tests/file/003.phpt:
      
      file 003-win32.phpt was initially added on branch PHP_4_3.

    * ext/standard/tests/time/002.phpt
      ext/standard/tests/time/002.phpt:
      die() to skip second message

    * ext/standard/datetime.c
      ext/standard/datetime.c:
      MSVC's mktime() does not examine the existence of a daylight-saving-time
      zone

    * ext/standard/tests/time/003.phpt
      ext/standard/tests/time/003.phpt:
      Windows doesn't know timezone CET

    * ext/standard/tests/time/002.phpt
      ext/standard/tests/time/002.phpt:
      skip for Windows (does not support dates prior to midnight, January 1,
      1970)

    * ext/standard/tests/time/002-win32.phpt:
      Windows does not support dates prior to midnight, January 1, 1970

    * ext/standard/tests/time/mktime.phpt:
      test for mktime()

2003-02-09  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/mssql/php_mssql.c
      ext/mssql/php_mssql.c:
      - Whitespace fixes

2003-02-09  Kai Schröder  <mail@kaischroeder.net>

    * ext/standard/tests/time/mktime.phpt
      ext/standard/tests/time/mktime.phpt:
      
      file mktime.phpt was initially added on branch PHP_4_3.

    * ext/standard/tests/time/002-win32.phpt
      ext/standard/tests/time/002-win32.phpt:
      
      file 002-win32.phpt was initially added on branch PHP_4_3.

2003-02-09  Frank M. Kromann  <frank@kromann.info>

    * ext/mssql/php_mssql.c
      ext/mssql/php_mssql.c:
      cleanup variable initializations

    * ext/mssql/php_mssql.c
      ext/mssql/php_mssql.c:
      Fixing coredump when no php.ini file is used

    * ext/mssql/config.m4
      ext/mssql/php_mssql.h:
      MFB

2003-02-09  Yasuo Ohgaki  <yohgaki@ohgaki.net>

    * ext/pgsql/pgsql.c:
      Fixed one more improper row offset handling.

2003-02-09  Frank M. Kromann  <frank@kromann.info>

    * (PHP_4_3)
      ext/mssql/php_mssql.h:
      DBFLT4 is not defined in FreeTDS. Needed for real data types

    * (PHP_4_3)
      ext/mssql/config.m4:
      Fixing autodetect of FreeTDS

2003-02-09  Yasuo Ohgaki  <yohgaki@ohgaki.net>

    * ext/pgsql/pgsql.c:
      Fixed improper result offset handling.
      Prevent error when connection is broken. (optional)

2003-02-09  Frank M. Kromann  <frank@kromann.info>

    * ext/mssql/php_mssql.c
      ext/mssql/php_mssql.c
      ext/mssql/php_mssql.h
      ext/mssql/php_mssql.h:
      Bug #21707 problem with real

    * ext/gd/gd.dsp
      ext/gd/gd_bundled.dsp:
      Syncronize with branch

    * (PHP_4_3)
      ext/gd/gd.dsp:
      Fixing build with GD 2.0.11

    * (PHP_4_3)
      ext/gd/gd_bundled.dsp:
      Adding missing HAVE_GD_STRINGFTEX define

    * (PHP_4_3)
      ext/gd/gd.dsp
      ext/gd/gd_bundled.dsp:
      Adding some missing defines to enable functions.
      Fixing bug #22130

2003-02-09  Shane Caraveo  <shane@caraveo.com>

    * ext/standard/basic_functions.c
      ext/standard/filestat.c
      ext/standard/php_filestat.h:
      is_executable() now available on win32
      stats can now get information provided by access()

    * run-tests2.php:
      whitespace changes

2003-02-08  Sascha Schumann  <sascha@schumann.cx>

    * ext/gettext/gettext.c:
      Fix segfault in bindtextdomain when first parameter was empty.
      
      The Linux man page states: domainname must be a non-empty string.
      
      Noticed by: Nils Meyer

2003-02-08  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * sapi/cli/php.1:
      Style corrections
      See also: Stig's intro
      Version info

2003-02-08  Jani Taskinen  <sniper@iki.fi>

    * ext/standard/string.c:
      style & ws fixes

2003-02-08  Pierre-Alain Joye  <paj@pearfr.org>

    * (PHP_4_3)
      ext/gd/libgd/gd.c
      ext/gd/libgd/gd.h:
      MFH:
      Add gdImageEllipse
      Replace gdImageFilledEllipse by a new function (backported from
      the new phpgd)
      the new gdImageFilledEllipse fix bug bug #22103 (ellipse part)

    * ext/gd/libgd/gd.c
      ext/gd/libgd/gd.h:
      Add gdImageEllipse
      Replace gdImageFilledEllipse by a new function (backported from
      the new phpgd)
      the new gdImageFilledEllipse fix bug bug #22103 (ellipse part)

2003-02-07  Sara Golemon  <php@alphaweb.net>

    * ext/standard/http_fopen_wrapper.c:
      chunk_size should always be reduced to 1 while scanning response headers to
      avoid buffering the actual stream prior to any read calls.

2003-02-07  Ilia Alshanetsky  <ilia@prohost.org>

    * main/php_streams.h:
      Added missing definitions.

2003-02-07  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * sapi/cli/php.1:
      Adding some text and some backslashes which are needed sometimes
      somewhere...

    * sapi/cli/php_cli.c:
      Define STDIN/OUT/ERR for -B -R -F -E (works as expected).
      Enable exit in same switches.

2003-02-07  Ilia Alshanetsky  <ilia@prohost.org>

    * NEWS:
      New function news.

    * ext/standard/basic_functions.c
      ext/standard/php_string.h
      ext/standard/string.c:
      Added str_split() function. This function can be used to break down a
      string into an array.

    * ext/standard/basic_functions.c
      ext/standard/url.c
      ext/standard/url.h
      main/streams.c:
      Added get_browser() function. This function can be used to fetch the
      headers
      sent by the server when a request is made for a given URL.

2003-02-07  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * sapi/cli/php_cli.c:
      No more maximum line size for -R and -F

2003-02-07  Uwe Schindler  <uwe@thetaphi.de>

    * sapi/nsapi/nsapi.c:
      (NSAPI SAPI) Fixed _SERVER[] variables (all headers included) to be now
      similar to apache SAPI; with this new file the memory leaks (webserver
      eats up memory during a few days running) are also disappeared (all by
      NSAPI allocated strings are freed).

2003-02-07  Zeev Suraski  <zeev@zend.com>

    * main/win95nt.h:
      Fixlet

2003-02-07  Dan Kalowsky  <dank@deadmime.org>

    * ext/odbc/php_odbc.c:
      MFB

    * (PHP_4_3)
      ext/odbc/php_odbc.c:
      Patch for Bug #21279 submitted by ernani@php.net

2003-02-06  James Cox  <james@imajes.info>

    * NEWS:
      adding news about moved ext

2003-02-06  Tal Peer  <tal@twisthost.com>

    * ext/fribidi/.cvsignore
      ext/fribidi/CREDITS
      ext/fribidi/EXPERIMENTAL
      ext/fribidi/README
      ext/fribidi/config.m4
      ext/fribidi/fribidi.c
      ext/fribidi/fribidi.dsp
      ext/fribidi/php_fribidi.h:
      Moving fribidi to PECL

2003-02-06  Sara Golemon  <php@alphaweb.net>

    * ext/bcmath/bcmath.c:
      bc_raise() can return a scale lower than that passed into it.  While most
      other bcmath calls won't, it's safest to do a quick check that we're only
      reducing n_scale, not increasing it.

2003-02-06  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * sapi/cli/php.1:
      Rewrite/add some stuff

2003-02-06  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      NEWS:
      fugbix news

    * (PHP_4_3)
      ext/standard/array.c:
      MFH: - Fixed bug #22088 (array_shift() leaves next index to be +1 too much)

    * ext/standard/array.c:
      - Fixed bug #22088 (array_shift() leaves next index to be +1 too much)

    * ext/standard/tests/array/bug22088.phpt:
      fix the test

    * ext/standard/tests/array/bug22088.phpt:
      
      Added testcase for bug #22088

2003-02-06  Andrey Hristov  <andrey@webgate.bg>

    * (PHP_4_3)
      NEWS:
      added entry for memory_get_usage().

    * (PHP_4_3)
      ext/standard/basic_functions.c
      ext/standard/php_var.h
      ext/standard/var.c:
      Backporting memory_get_usage() from HEAD.
      As far as the code is small there won't be any problems.

2003-02-05  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * tests/classes/private_001.phpt
      tests/classes/private_002.phpt
      tests/classes/private_003.phpt
      tests/classes/private_003b.phpt
      tests/classes/private_004.phpt
      tests/classes/private_004b.phpt
      tests/classes/private_005.phpt
      tests/classes/private_005b.phpt
      tests/classes/private_006.phpt
      tests/classes/private_006b.phpt
      tests/classes/private_007.phpt
      tests/classes/private_007b.phpt
      tests/classes/protected_001.phpt
      tests/classes/protected_001b.phpt
      tests/classes/protected_002.phpt
      tests/classes/visibility_000a.phpt
      tests/classes/visibility_000b.phpt
      tests/classes/visibility_000c.phpt
      tests/classes/visibility_001a.phpt
      tests/classes/visibility_001b.phpt
      tests/classes/visibility_001c.phpt
      tests/classes/visibility_002a.phpt
      tests/classes/visibility_002b.phpt
      tests/classes/visibility_002c.phpt
      tests/classes/visibility_003a.phpt
      tests/classes/visibility_003b.phpt
      tests/classes/visibility_003c.phpt
      tests/classes/visibility_004a.phpt
      tests/classes/visibility_004b.phpt
      tests/classes/visibility_004c.phpt:
      Add PPP method tests

2003-02-05  Ilia Alshanetsky  <ilia@prohost.org>

    * NEWS:
      New function news.

    * ext/standard/array.c
      ext/standard/basic_functions.c
      ext/standard/php_array.h:
      Added array_walk_recursive() function that can apply array_walk recursively
      to an array.

2003-02-05  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/iconv/CREDITS:
      Credits for iconv

    * sapi/activescript/EXPERIMENTAL:
      Mark activescript sapi as experimental, so that the installer can
      categorize it appropriately.

    * win32/installer/README
      win32/installer/gen-nsis.php
      win32/installer/setini.php:
      Check in the prototype PHP installer for win32.
      

2003-02-05  Ilia Alshanetsky  <ilia@prohost.org>

    * sapi/apache/mod_php4.c
      sapi/apache_hooks/mod_php4.c:
      Build Fix.

2003-02-05  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * sapi/cli/php.1:
      

    * sapi/cli/php.1:
      First step - abrief version.

2003-02-04  Stig Bakken  <ssb@fast.no>

    * pear/package-PEAR.xml:
      - replace @bin_dir@ in pear.bat

2003-02-04  Sara Golemon  <php@alphaweb.net>

    * (PHP_4_3)
      ext/bcmath/bcmath.c:
      FMH(r-1.49/r-1.50)

2003-02-04  Andi Gutmans  <andi@zend.com>

    * ext/bcmath/bcmath.c:
      - Please follow coding standards (this isn't java :)

2003-02-04  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/bcmath/bcmath.c:
      fix ZTS build

2003-02-04  Ilia Alshanetsky  <ilia@prohost.org>

    * sapi/apache/mod_php4.c
      sapi/apache_hooks/mod_php4.c:
      Fixed compilation of Apache & Apache Hooks SAPIs.

2003-02-04  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * sapi/cli/php_cli.c:
      remove it then....this forces to put work in man page ...

2003-02-04  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      NEWS:
      reorder the bug fixes (reverse #). added missing bug fixing news

2003-02-04  Sara Golemon  <php@alphaweb.net>

    * ext/bcmath/bcmath.c:
      Bug#13551 bcmath functions should not apply scale to arguments, only to
      result

2003-02-04  Ilia Alshanetsky  <ilia@prohost.org>

    * (PHP_4_3)
      NEWS:
      Bug fixing news.

    * ext/pgsql/pgsql.c:
      Made the row parameter in pg_result_seek() non-optional, the current
      implementation would result in random behavior if the 2nd argument is not
      passed.
      Fixed bug #22042 (pg_result_seek() would never seek to the 1st row in the
      result due to always seeking to row next to the one requested).
      Removed dead code from pg_result_seek().

2003-02-04  Zeev Suraski  <zeev@zend.com>

    * ext/standard/aggregation.c
      sapi/apache/mod_php4.c
      sapi/apache_hooks/mod_php4.c:
      Updates reflecting infrastructure changes

2003-02-04  Uwe Steinmann  <uwe@steinmann.cx>

    * ext/pdf/pdf.c:
      - fixed some prototypes and folding

    * ext/pdf/pdf.c:
      - fixed prototype of pdf_get_buffer()

2003-02-04  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      NEWS:
      Added missing bugfix news entry.

    * NEWS:
      NEWS ordering..

2003-02-03  Hartmut Holzgraefe  <hartmut@six.de>

    * main/output.c:
      proto-fix

2003-02-03  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/datetime.c:
      Fixed bug #22017 (non descriptive error to appear when timestamp passed to
      date() has value < 0. Win32 does not support timestamps prior to midnight
      (00:00:00), January 1, 1970).

    * ext/standard/basic_functions.c:
      Make putenv() return a proper error rather then NULL when invalid argument
      is passed.

    * ext/imap/php_imap.c:
      Fixed bug #22022 (Crash in imap_mail_compose() if the body is an empty
      array).

    * ext/curl/interface.c:
      Fixed bug #22031 (Made curl_write() & curl_write_header() binary safe).

2003-02-03  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/mbstring/tests/mb_http_output.phpt
      ext/mbstring/tests/mb_internal_encoding.phpt
      ext/mbstring/tests/mb_strpos.phpt:
      Trivial test adjustment

    * ext/mbstring/mbstring.c:
      zend_get_parameters_* => zend_parse_parameters

2003-02-03  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      sapi/apache2filter/config.m4:
      MFH: Fix bug: #22035 (EXTRA_LDFLAGS for AIX not quite right)

    * sapi/apache2filter/config.m4:
      Fix bug: #22035 (EXTRA_LDFLAGS for AIX not correct)

    * (PHP_4_3)
      NEWS:
      fugbix news

    * (PHP_4_3)
      ext/standard/array.c:
      MFH: Fixed bug: #21998 (array_pop() did not reset the current array
      position)

    * ext/standard/array.c:
      - Fixed bug: #21998 (array_pop() did not reset the current array position)

    * ext/standard/tests/array/bug21998.phpt:
      Correct description of the problem

2003-02-03  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/mbstring/mbstring.c:
      Really fixed proto.
      

    * ext/mbstring/mbstring.c:
      Oops! wrong commit. Reverting...

    * ext/mbstring/mbstring.c:
      Fixed proto

    * tests/lang/bug21961.phpt:
      Modified the test so it will be skipped under ZE1.
      Thanks Kai

    * tests/lang/bug20175.phpt:
      Added missing "?>"

    * ext/mbstring/tests/mb_strpos.phpt:
      Fixed test case for mb_strpos().

2003-02-03  Jani Taskinen  <sniper@iki.fi>

    * sapi/apache_hooks/config.m4:
      Make these configure messages differ from the regular apache configure

2003-02-03  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * tests/lang/bug21961.phpt:
      Added test case for bug #21961

2003-02-03  Jani Taskinen  <sniper@iki.fi>

    * ext/standard/php_image.h:
      This cause some warning/error in AIX

    * (PHP_4_3)
      main/php_ini.c:
      MFH: Fixed bug: #22011 (-n must ignore all ini files)

    * main/php_ini.c:
      Fixed bug: #22011 (-n must ignore all ini files)

2003-02-03  Derick Rethans  <d.rethans@jdimedia.nl>

    * run-tests.php:
      - Make VIM highlighting happy

2003-02-03  Jani Taskinen  <sniper@iki.fi>

    * ext/interbase/config.m4:
      Test that libgds actually exists.

    * ext/calendar/calendar.c:
      ws

2003-02-03  Giuseppe Tanzilli  <g.tanzilli@gruppocsf.com>

    * (PHP_4_3)
      sapi/servlet/Makefile.frag
      sapi/servlet/config.m4
      sapi/servlet/servlet.c
      sapi/servlet/servlet.java:
      Fix sapi/servlet build on Unix

2003-02-03  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * sapi/cli/php_cli.c:
      Fix ZTS build.

2003-02-03  Jani Taskinen  <sniper@iki.fi>

    * ext/standard/tests/array/bug21998.phpt:
      
      Added test for bug #21998

2003-02-03  Stig Bakken  <ssb@fast.no>

    * pear/package-PEAR.xml:
      - 1.1 release notes update
      * added some <provides> elements

    * pear/PEAR/Common.php:
      - start using the source tokenizer

    * pear/package-PEAR.xml:
      - substitute @php_dir@ in pear.in

2003-02-03  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * sapi/cli/php_cli.c:
      - Added -B, -F, -R, -E for line by line std in processing.
      - Added some error messages.
      - Added more -h info.

2003-02-02  Ilia Alshanetsky  <ilia@prohost.org>

    * main/php_scandir.h:
      Fixed bug #22021.

    * ext/curl/interface.c:
      Gave the user the ability to specify encoding of the request.
      Patch by jens@mermaidconsulting.dk.

    * main/php_scandir.c:
      Fixed build on Solaris (patch by Melvyn Sopacua).

2003-02-02  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * ext/standard/info.c:
      Fix warning.

2003-02-02  Zeev Suraski  <zeev@zend.com>

    * ext/standard/info.c
      ext/standard/info.c:
      Fix phpinfo() display of Zend extensions

2003-02-02  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/gd/config.m4
      ext/gd/libgd/gd.c
      ext/gd/libgd/xbm.c
      ext/gd/tests/conv_test.xbm
      ext/gd/tests/xbm2png.phpt:
      - new xbm support
      

2003-02-01  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/standard/image.c:
      avoid warnings

    * ext/gd/config.m4:
      Bundled version has XBM support as well as external.

    * ext/gd/gd.c:
      Show if XPM support is available & Set availability bit only when
      available.

    * ext/standard/image.c
      ext/standard/php_image.h:
      

    * ext/dba/config.m4:
      Change DBM detection order

    * (PHP_4_3)
      ext/dba/config.m4
      ext/dba/dba_cdb.c
      ext/dba/dba_dbm.c
      ext/dba/dba_gdbm.c
      ext/dba/dba_ndbm.c:
      MFH: include file handling and dbm fixes

    * ext/dba/config.m4
      ext/dba/dba_cdb.c
      ext/dba/dba_dbm.c
      ext/dba/dba_gdbm.c:
      - unify configure mechanisms (include file handling)
      - fix dbm
      - allow dbm to be based on gdbm

2003-02-01  Melvyn Sopacua  <msopacua@idg.nl>

    * run-tests.php:
      Make it easier to diff results of several runs in one day.

2003-02-01  Jani Taskinen  <sniper@iki.fi>

    * NEWS:
      Correct required mcrypt version

2003-02-01  Melvyn Sopacua  <msopacua@idg.nl>

    * (PHP_4_3)
      INSTALL:
      MFH: Bug #21892 (links to apache2 install instructions missing)

    * INSTALL:
      Fix Bug #21892 (links to apache2 install instructions missing)
      

2003-02-01  Martin Jansen  <mail@martin-jansen.de>

    * pear/PEAR/Command/Registry.php:
      - displayLine() is deprecated, so better use displayError() here.

2003-02-01  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/standard/var.c:
      Don't assume that objects have class entries (in the ZE1 sense) when
      determining the class name.
      Additionally, don't assume that objects have a properties hash either.

2003-01-31  Melvyn Sopacua  <msopacua@idg.nl>

    * ext/mcrypt/config.m4:
      Require 2.5.6+
      MFB: Be -ltdl aware

2003-01-31  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/openssl/openssl.c:
      Fixed bug #21986 (openssl test failure).

2003-01-31  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * (PHP_4_3)
      ext/dba/config.m4:
      MFH: Shared dba requires at least db-3.3

    * ext/dba/config.m4:
      Shared dba requires at least db-3.3

    * ext/dba/dba.c:
      Fix proto

2003-01-31  Frank M. Kromann  <frank@kromann.info>

    * ext/ext_skel.php
      ext/ext_skel.php
      ext/ext_skel_win32.php:
      Rename script.
      Add check for CLI version

    * ext/ext_skel_win32.php
      ext/ext_skel_win32.php:
      
      file ext_skel_win32.php was initially added on branch PHP_4_3.

2003-01-31  Sascha Schumann  <sascha@schumann.cx>

    * ext/standard/var.c:
      Unbreak $Id tag

2003-01-31  Melvyn Sopacua  <msopacua@idg.nl>

    * (PHP_4_3)
      ext/mcrypt/config.m4:
      "The ugly patch"
      Make mcrypt compile, when we finally are free of -ltdl. Bug #20926.
      

2003-01-31  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * (PHP_4_3)
      ext/mbstring/mbfilter.c
      ext/mbstring/mbstring.c
      ext/mbstring/tests/mb_send_mail01.phpt
      ext/mbstring/tests/mb_send_mail02.phpt
      ext/mbstring/tests/mb_send_mail03.phpt
      ext/mbstring/tests/mb_send_mail04.phpt
      ext/mbstring/tests/mb_send_mail05.phpt
      ext/mbstring/tests/mb_send_mail06.phpt:
      MFH: fixed a mb_send_mail() bug.

2003-01-31  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      NEWS:
      Moved from HEAD.

    * NEWS:
      Moved these entries to PHP_4_3 branch NEWS (for 4.3.1)

    * ext/oci8/php_oci8.h:
      No c++ comments..

2003-01-31  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/mbstring/mbfilter.c
      ext/mbstring/mbstring.c
      ext/mbstring/tests/mb_send_mail01.phpt
      ext/mbstring/tests/mb_send_mail02.phpt
      ext/mbstring/tests/mb_send_mail03.phpt
      ext/mbstring/tests/mb_send_mail04.phpt
      ext/mbstring/tests/mb_send_mail05.phpt
      ext/mbstring/tests/mb_send_mail06.phpt
      ext/mbstring/tests/mb_send_mail07.phpt:
      Fixed a mb_send_mail() bug that has been reported in php-i18n@lists.php.net
      See http://lists.php.net/article.php?group=php.i18n&article=427

2003-01-31  Sascha Schumann  <sascha@schumann.cx>

    * php.ini-dist:
      Remove obsolete warning

2003-01-31  Sara Golemon  <php@alphaweb.net>

    * ext/ftp/ftp.c
      ext/ftp/ftp.h
      ext/ftp/php_ftp.c
      ext/ftp/php_ftp.h:
      Add ftp_raw() to send raw command strings to an FTP server.

2003-01-31  Frank M. Kromann  <frank@kromann.info>

    * ext/skeleton/skeleton.php:
      Use platform specific extension.

    * ext/skeleton/skeleton.dsp:
      Dtandard visual studio project for ext_skel

    * ext/ext_skel.php:
      Wrapper script to use ext_skel on Win32

    * (PHP_4_3)
      ext/ext_skel.php:
      Wrapper script to execute ext_skel on WIn32

    * ext/ext_skel.php:
      
      file ext_skel.php was initially added on branch PHP_4_3.

    * (PHP_4_3)
      ext/skeleton/skeleton.php:
      Allow extensions to be loaded on win32

    * ext/skeleton/skeleton.dsp
      ext/skeleton/skeleton.dsp:
      
      file skeleton.dsp was initially added on branch PHP_4_3.

2003-01-30  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/session/session.c:
      Fix compiler warning.

2003-01-30  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/dba/config.m4:
      Revert this part, the new one adds more problems than it solves.

2003-01-30  Sascha Schumann  <sascha@schumann.cx>

    * (PHP_4_3)
      main/streams.c
      main/streams.c:
      Partial MFH: Fix sticky eof issue, and avoid calling system stat macro

    * main/streams.c:
      Fix sticky EOF problem
      
      Sometimes streams signal a temporary EOF, because all current data
      has been consumed. But that does not preclude the possibility that
      more data will become available later.
      
      Thus we must not treat eof in the read path as final.
      
      Now, "tail -f" like scripts work again.

2003-01-30  Sara Golemon  <php@alphaweb.net>

    * ext/standard/string.c:
      Unify str_replace and str_ireplace using INTERNAL_FUNCTION_PARAM_PASSTHRU
      -- reduce codebase/maintenance complexity

2003-01-30  Jani Taskinen  <sniper@iki.fi>

    * ext/informix/ifx.ec:
      fix bug: #21945 (zts build failed)

2003-01-30  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * (PHP_4_3)
      ext/dba/config.m4:
      MFH: Allow to link against chosen modules correctly

    * ext/dba/config.m4:
      Allow to link against chosen modules correctly

2003-01-30  Sara Golemon  <php@alphaweb.net>

    * ext/standard/basic_functions.c
      ext/standard/php_string.h
      ext/standard/string.c:
      Feature Request # 5919 - Addition of str_ireplace()
      Also removed deprecated BM str replace menthod
      Also rewrote php_str_to_str to use more processor/memory efficient method
      (ilia)

2003-01-30  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/dbx/dbx.c
      ext/fbsql/php_fbsql.c
      ext/imap/php_imap.c
      ext/mcal/php_mcal.c
      ext/msql/php_msql.c
      ext/mssql/php_mssql.c
      ext/mysql/php_mysql.c
      ext/sybase/php_sybase_db.c
      ext/sybase_ct/php_sybase_ct.c:
      Removed pointless checks.

2003-01-29  Stig Bakken  <ssb@fast.no>

    * pear/PEAR/Installer.php:
      - Windows fix (thanks to paj)

2003-01-29  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/informix/ifx.ec:
      Added sanity checks.

2003-01-29  Maxim Maletsky  <maxim@maxim.cx>

    * ext/oci8/CREDITS
      ext/oci8/oci8.c:
      Added myself to the maintainers list.

2003-01-29  Edin Kadribasic  <edink@proventum.net>

    * sapi/embed/php_embed.c:
      Be more consistent with the sapi internal name.

    * ext/standard/dl.c:
      Enable embedded code using sapi/embed to use dl().

2003-01-29  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      NEWS:
      ordered all bug fixes by the number :)

    * NEWS:
      NEWS police is back.

    * (PHP_4_3)
      NEWS:
      news entries for new options in phpize and php-config

2003-01-29  Harald Radi  <harald.radi+coding.php@nme.at>

    * ext/standard/basic_functions.c
      main/main.c:
      MFPHP_4_3

    * (PHP_4_3)
      main/main.c:
      ilia pointet me to a thread on php-dev saying that
      Co(Un)Initialize should be called per thread

2003-01-29  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/basic_functions.c
      ext/standard/php_string.h:
      Added part of strpos commit that never made it in for some reason.
      

2003-01-28  Harald Radi  <harald.radi+coding.php@nme.at>

    * (PHP_4_3)
      ext/standard/basic_functions.c:
      moved to php4/main

    * (PHP_4_3)
      main/main.c:
      somehow the module shutdown order got reversed since 4.3.0,
      thus the CoInitialize / CoUninitialize calles are more sane here
      than in the basic functions module.

2003-01-28  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      NEWS:
      fugbix news

2003-01-28  Ilia Alshanetsky  <ilia@prohost.org>

    * (PHP_4_3)
      ext/hyperwave/hw.c:
      Fixed compile warning.

    * (PHP_4_3)
      NEWS:
      Bug fixing news.

    * sapi/apache2filter/sapi_apache2.c:
      Fixed bug #17868 (more then the <!--include--> directive used to include
      a PHP file would result in a crash).

2003-01-28  Derick Rethans  <d.rethans@jdimedia.nl>

    * main/php_scandir.c
      main/php_scandir.c:
      - Fix includes

2003-01-28  Ilia Alshanetsky  <ilia@prohost.org>

    * main/php_scandir.c
      main/php_scandir.c:
      Fixed compiler warning.

2003-01-28  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      Makefile.frag
      configure.in
      build/config-stubs
      pear/Makefile.frag
      pear/pear.m4
      pear/scripts/.cvsignore
      pear/scripts/php-config.in
      pear/scripts/phpextdist
      pear/scripts/phpize.in
      scripts/.cvsignore
      scripts/Makefile.frag
      scripts/config-stubs
      scripts/conv_proto
      scripts/conv_z_macros
      scripts/credits
      scripts/php-config.in
      scripts/phpextdist
      scripts/phpize.in
      scripts/phpize.m4
      scripts/dev/conv_proto
      scripts/dev/conv_z_macros
      scripts/dev/credits:
      - MFH: Fixed bug #13561 (--without-pear prevents install of php-config,
      phpize)
      - MFH: Added --ldflags option to php-config
      - MFH: Added --clean option to phpize

2003-01-28  Edin Kadribasic  <edink@proventum.net>

    * sapi/embed/php_embed.c:
      Call correct module startup function (not a hard coded one) allowing
      startup override.

2003-01-28  Sascha Schumann  <sascha@schumann.cx>

    * ext/ircg/ircg_scanner.c:
      sync with .re

    * ext/ircg/ircg_scanner.re:
      update year

    * ext/ircg/Makefile.frag:
      Looks like we are hitting a bug due to '\xxx' for xxx >= 200 not being
      handled
      correctly.

2003-01-28  Zeev Suraski  <zeev@zend.com>

    * win32/php4ts.dsw:
      Get rid of php4ts.dsw - replaced by php5ts.dsw

2003-01-28  Jani Taskinen  <sniper@iki.fi>

    * build/config-stubs
      pear/Makefile.frag
      pear/pear.m4
      pear/scripts/.cvsignore
      scripts/.cvsignore
      scripts/Makefile.frag
      scripts/php-config.in
      scripts/phpextdist
      scripts/phpize.in
      scripts/phpize.m4
      scripts/dev/conv_proto
      scripts/dev/conv_z_macros
      scripts/dev/credits:
      
      - Fixed bug: #13561 (--without-pear prevents install of phpize,
      php-config)

    * Makefile.frag
      configure.in
      pear/scripts/php-config.in
      pear/scripts/phpextdist
      pear/scripts/phpize.in
      scripts/config-stubs
      scripts/conv_proto
      scripts/conv_z_macros
      scripts/credits:
      - Fixed bug: #13561 (--without-pear prevents install of phpize, php-config)

    * ext/dba/config.m4:
      Fix configure. (typo?)

2003-01-28  Edin Kadribasic  <edink@proventum.net>

    * sapi/embed/php_embed.c
      sapi/embed/php_embed.h:
      Expose php_embed_module struct (and make Wez happy).

2003-01-28  Melvyn Sopacua  <msopacua@idg.nl>

    * (PHP_5_0_dev_before_13561_fix)
      tests/lang/bug20175.phpt:
      Fix parse error and edink's fear of bison errors

2003-01-28  Jani Taskinen  <sniper@iki.fi>

    * (PHP_5_0_dev_before_13561_fix)
      ext/imap/config.m4:
      fix some typos

    * (PHP_5_0_dev_before_13561_fix)
      ext/mime_magic/config.m4:
      fix typo

2003-01-28  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * (PHP_5_0_dev_before_13561_fix)
      ext/dba/config.m4:
      - fix this: els is optional but may not be empty

2003-01-28  Frank M. Kromann  <frank@kromann.info>

    * (PHP_5_0_dev_before_13561_fix)
      ext/standard/info.c
      ext/standard/info.c:
      Fix the setting of computer name and processor type for php_uname() on
      Win32

2003-01-28  Jani Taskinen  <sniper@iki.fi>

    * (PHP_5_0_dev_before_13561_fix)
      makedist
      makedist.ZendEngine2:
      - Removed unnecessary makedist.ZendEngine2
      - Modified makedist to use php5 CVS module (alias)

2003-01-28  Ilia Alshanetsky  <ilia@prohost.org>

    * (PHP_5_0_dev_before_13561_fix)
      ext/standard/basic_functions.c
      ext/standard/dir.c
      ext/standard/php_dir.h:
      Added scandir() function, which allows quick retrieval of all files &
      directories within the specified path and sort the output in alphabetical
      or reverse alphabetical order.

    * (PHP_5_0_dev_before_13561_fix)
      sapi/apache2filter/php_functions.c:
      Fixed win32 build (bug #21506).
      Fixed a bug that would cause garbage data to appear at the end of the
      loaded apache modules list in phpinfo().

2003-01-28  Jani Taskinen  <sniper@iki.fi>

    * ext/mime_magic/config.m4:
      - Cleaned up and made less error-prone
      - Changed --enable-mime-magic -> --with-mime-magic[=FILE] to allow
        specifying of the file during configure.

2003-01-28  Ilia Alshanetsky  <ilia@prohost.org>

    * (PHP_5_0_dev_before_13561_fix)
      main/php_scandir.c
      main/php_scandir.h:
      
      2nd part of Sebastian's patch.

2003-01-28  Edin Kadribasic  <edink@proventum.net>

    * (PHP_5_0_dev_before_13561_fix)
      win32/php4dllts.dsp:
      Adding new files to the project.

2003-01-28  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * (PHP_4_3)
      ext/dba/config.m4:
      MFH: --without-flatfile, Berkeley DB version check

    * ext/dba/config.m4:
      - fix "--without-flatfile"
      - simplify Berkley DB verison check

2003-01-27  Ilia Alshanetsky  <ilia@prohost.org>

    * configure.in
      main/php_ini.c
      main/php_scandir.c
      main/php_scandir.h
      win32/readdir.c
      win32/readdir.h:
      Moved the scandir code into it's own files so that it can be used by other
      OSes where libc does not have a native scandir() implementation.

2003-01-27  Maxim Maletsky  <maxim@maxim.cx>

    * ext/oci8/oci8.c:
      This fixes "warning C4101: 'charsetid' : unreferenced local variable" on
      VC6

    * ext/oci8/oci8.c:
      (Maxim)

2003-01-27  Sara Golemon  <php@alphaweb.net>

    * ext/ftp/ftp.c
      ext/ftp/ftp.h
      ext/ftp/php_ftp.c:
      Fix potential buffer overflow.

2003-01-27  Ilia Alshanetsky  <ilia@prohost.org>

    * main/output.c:
      Removed pointless checks.

2003-01-27  Edin Kadribasic  <edink@proventum.net>

    * (PHP_4_3)
      NEWS
      ext/standard/dir.c
      win32/glob.c:
      MFH: Fixed bug #21597 (made glob() understand Windows paths).

    * ext/standard/dir.c
      win32/glob.c:
      Fixed bug #21597 (made glob() understand windows paths)

2003-01-27  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      configure.in:
      revert previous commit

    * (PHP_4_3)
      configure.in:
      MFH: use grep -E instead of egrep. the latter is not defined by POSIX
      anymore

2003-01-27  Uwe Steinmann  <uwe@steinmann.cx>

    * ext/hyperwave/hw.c:
      - fixed several bugs in hw_document_xx() functions. The macro to access
        the document was the same as for a link to the sever.

2003-01-27  Sara Golemon  <php@alphaweb.net>

    * ext/ftp/ftp.c
      ext/ftp/ftp.h
      ext/ftp/php_ftp.c
      ext/ftp/php_ftp.h:
      Feature Request #21748.  Added function ftp_chmod().

2003-01-27  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * tests/lang/bug21600.phpt:
      Updated test so it describes the problem more clearly.

2003-01-26  Stig Bakken  <ssb@fast.no>

    * pear/PEAR.php:
      - whoops, heritage shows through :)

2003-01-26  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * run-tests.php:
      Simplify

2003-01-26  Sander Roobol  <phy@wanadoo.nl>

    * (PHP_4_3)
      ext/mime_magic/mime_magic.c:
      MFH (well... it's not really an MFH... but who cares :)

    * ext/mime_magic/mime_magic.c:
      Fix build

2003-01-26  Shane Caraveo  <shane@caraveo.com>

    * sapi/isapi/php4isapi.c:
      normalize CGI variables to the CGI spec
      PATH_INFO and PATH_TRANSLATED are correct now
      SCRIPT_FILENAME now contains the full path to the script

    * (PHP_4_3)
      main/php_ini.c
      win32/readdir.c
      win32/readdir.h:
      MFH
      fix broken build by adding scandir and alphasort

    * main/php_ini.c
      win32/readdir.c
      win32/readdir.h:
      Fix broken build by adding scandir and alphasort for win32

2003-01-26  Sara Golemon  <php@alphaweb.net>

    * ext/gd/gd.c
      ext/gd/php_gd.h:
      Feature Request #21784  Added: imagecolorallocatealpha
      (pollita@php.net,jasper@pointless.net)

2003-01-25  Shane Caraveo  <shane@caraveo.com>

    * (PHP_4_3)
      sapi/cgi/cgi_main.c:
      MFH
      
      fix bug 21261
          putenv on some platforms requires we provide the memory
          cleanup env parsing logic
      fix bug 21367
          missed optargs in a previous patch

    * sapi/cgi/cgi_main.c:
      fix bug 21261
          putenv on some platforms requires we provide the memory
          cleanup env parsing logic
      fix bug 21367
          missed optargs in a previous patch

2003-01-25  Ilia Alshanetsky  <ilia@prohost.org>

    * main/php_ini.c:
      Fixed bug #21625 (When scanning a directory for ini files, do so in
      alphabetical order. This gives a user a way to control the order in which
      the ini files are loaded).
      Fixed a bug that would make the code try to read files without an
      extension
      as ini files.

2003-01-25  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * (PHP_4_3)
      ext/dba/config.m4:
      MFH: The builtin version was always used even if configured otherwise.

    * (PHP_4_3)
      run-tests.php:
      MFH: Bug #21751: Part one never let this happen again...

    * ext/dba/config.m4:
      The builtin version was always used even if configured otherwise.

    * run-tests.php:
      Bug #21751: Part one never let this happen again...

2003-01-25  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/informix/ifx.ec:
      Removed unneeded code.

2003-01-25  Hartmut Holzgraefe  <hartmut@six.de>

    * ext/mime_magic/mime_magic.c:
      - mime file parser messages only with mime_magic.debug=On (default: off)
      - fix docref URL in startup error messages
      - show status in php info, either "enabled" or "..., disabled"

    * ext/mime_magic/php_mime_magic.h:
      preparations for making magic file parser silent

    * ext/mime_magic/config.m4:
      suggesting a plain magic file insteat of a mime one is a bad idea

2003-01-25  Stig Bakken  <ssb@fast.no>

    * pear/tests/osguess.php:
      - not a real test, just a script for displaying OS_Guess output

    * pear/OS/Guess.php:
      - add glibc version detection for Linux

    * pear/PEAR/Command/Remote.php:
      - typo

2003-01-25  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/informix/ifx.ec:
      Fixed a typo.

    * ext/standard/image.c:
      Fixed compiler warning.

2003-01-24  Sascha Schumann  <sascha@schumann.cx>

    * ext/session/mod_files.c
      ext/session/session.c:
      Remove ugly netware hacks from the code

2003-01-24  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/wddx/wddx.c:
      Removed unnecessary checks.

2003-01-24  Dan Kalowsky  <dank@deadmime.org>

    * (PHP_4_3)
      ext/odbc/php_odbc.c:
      busted by the style police...

    * ext/odbc/php_odbc.c
      ext/odbc/php_odbc.c:
      Patch for bug #21844

2003-01-24  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/gd/gd.c:
      Fixed bug #21533 (a rare condition where error can remain undefined and
      result in undefined behavior when it is used without being initialized).

    * ext/informix/ifx.ec:
      Fixed bug #21865.

2003-01-24  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      ext/oci8/config.m4:
      MFH: Fix bug #21795, Undeclared statement in oci8.c (OCI_ATTR_STATEMENT)

    * ext/oci8/config.m4:
      Fix bug #21795, Undeclared statement in oci8.c (OCI_ATTR_STATEMENT)

2003-01-24  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/yp/yp.c:
      Fixed a memory leak.
      zend_error -> php_error_docref.

    * ext/crack/crack.c
      ext/gmp/gmp.c
      ext/standard/array.c
      ext/standard/assert.c
      ext/standard/browscap.c
      ext/standard/html.c
      ext/standard/var_unserializer.c
      ext/standard/var_unserializer.re
      ext/sysvmsg/sysvmsg.c:
      zend_error -> php_error_docref.

    * ext/gd/gd.c
      ext/hyperwave/hw.c
      ext/standard/proc_open.c:
      Fixed compile warning.

2003-01-24  Andrey Hristov  <andrey@webgate.bg>

    * ext/standard/string.c:
      Resolving problem on OSF1 and probably other
      64 bit platforms. Thanks for the feedback of Magnus (novell kiruna se).

    * ext/standard/string.c:
      Adding cast.

2003-01-24  Jani Taskinen  <sniper@iki.fi>

    * ext/imap/php_imap.c:
      - Fixed stupid typo..

    * (PHP_4_3)
      ext/standard/file.c:
      MFH: Fix potential problem for 64-bit architectures.

    * (PHP_4_3)
      NEWS:
      figbug news

    * ext/snmp/snmp.c:
      Fixed bug: #20857, snmpset() fails

    * ext/snmp/snmp.c:
      ws fixes

    * tests/func/001.phpt
      tests/func/005.phpt
      tests/func/005a.phpt
      tests/func/007.phpt
      tests/func/008.phpt
      tests/func/009.phpt:
      MFB, removed unused GET/POST entries

    * (PHP_4_3)
      tests/func/001.phpt
      tests/func/005.phpt
      tests/func/005a.phpt
      tests/func/007.phpt
      tests/func/008.phpt
      tests/func/009.phpt:
      Remove unused GET/POST entries

2003-01-24  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/dbx/dbx.c
      ext/dio/dio.c
      ext/pcre/php_pcre.c:
      zend_error() -> php_error_docref().

2003-01-23  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * tests/lang/bug21849.phpt:
      Added test case for bug21849.phpt

2003-01-23  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * TODO-PHP5:
      TODO for PHP 5.

2003-01-23  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/mbstring/php_mbregex.c:
      Really fixed the mb issue of mb_ereg_replace()

    * ext/mbstring/php_mbregex.c:
      Fixed a mb_ereg_replace() bug; the function was not completely
      multibyte-safe.

    * tests/lang/bug7515.phpt:
      Fixed typo

    * tests/lang/029.phpt
      tests/lang/bug7515.phpt:
      Changed the test's file name as per the convention

    * ext/standard/tests/serialize/002.phpt
      ext/standard/tests/serialize/bug14293.phpt:
      Renamed the test name as per the convension

    * ext/standard/tests/image/bug13213.phpt
      ext/standard/tests/math/bug21523.phpt
      ext/standard/tests/network/bug20134.phpt
      ext/standard/tests/strings/bug20108.phpt
      ext/standard/tests/strings/bug20169.phpt
      ext/standard/tests/strings/bug20927.phpt:
      Test name formatting

    * ext/pcre/tests/bug20528.phpt:
      Made the test's name more descriptive

    * ext/pcre/tests/bug20528.phpt
      ext/pcre/tests/bug21732.phpt:
      Removed pointless checks

    * ext/pcre/tests/bug21732.phpt:
      Added test case for bug #21732

2003-01-23  Jani Taskinen  <sniper@iki.fi>

    * ext/imap/php_imap.c:
      Fix bug: #21817 (only enable this if --with-kerberos is used)

2003-01-23  Zeev Suraski  <zeev@zend.com>

    * win32/php4dllts.dsp:
      Fix .dsp

2003-01-23  Jani Taskinen  <sniper@iki.fi>

    * configure.in:
      remove this stupid highlight which causes trouble.

    * ext/gd/config.m4:
      MFB

    * (PHP_4_3)
      ext/gd/config.m4:
      Enable building with freetype 2.1.3

    * ext/ingres_ii/config.m4:
      Correct default path

    * (PHP_4_3)
      NEWS:
      fugbix news

    * tests/func/005a.phpt:
      
      Added test for bug: #21513

2003-01-22  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/sybase_ct/php_sybase_ct.c:
      Removed non-needed code.

2003-01-22  Anil Madhavapeddy  <anil@recoil.org>

    * ext/standard/config.m4:
      typo

2003-01-22  Frank M. Kromann  <frank@kromann.info>

    * ext/ming/ming.dsp
      ext/ming/ming.dsp:
      adding missing zlib.lib and path to bindlib

2003-01-22  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/gd/gd.c:
      Fixed a crash when invalid color is passed to imagepstext().

2003-01-22  Sascha Schumann  <sascha@schumann.cx>

    * (PHP_4_3)
      ext/ircg/ircg.c
      ext/ircg/ircg.c:
      Fix for treating a NAMES list as single join

2003-01-21  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/mbstring/php_mbregex.c:
      Oops! wrong patch. Reverted.

    * ext/mbstring/php_mbregex.c:
      Fixed mb_ereg_replace() bug (the function has ignored the default option)

    * tests/lang/bug21800.phpt:
      Added test case for bug #21800

    * ext/mbstring/php_mbregex.c:
      Fixed mb_ereg_search() segfault that occurs when the function is called
      before a string to be searched is passed by mb_ereg_search_init()

2003-01-21  Andrey Hristov  <andrey@webgate.bg>

    * ext/sysvshm/sysvshm.c:
      increasing readability.

2003-01-21  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/odbc/birdstep.c:
      getParameters -> zend_get_parameters_ex.

    * ext/fbsql/php_fbsql.c
      ext/mbstring/mbstring.c
      ext/standard/array.c
      ext/standard/basic_functions.c
      ext/standard/file.c
      ext/standard/string.c
      sapi/apache/php_apache.c
      sapi/apache_hooks/php_apache.c:
      ARG_COUNT(ht) -> ZEND_NUM_ARGS().

2003-01-21  Stig Bakken  <ssb@fast.no>

    * pear/PEAR.php
      pear/package-PEAR.xml:
      - PEAR_Error now supports exceptions when using Zend Engine 2.  Set the
        error mode to PEAR_ERROR_EXCEPTION to make PEAR_Error throw itself
        as an exception (invoke PEAR errors with raiseError() or throwError()
        just like before).

2003-01-21  Sascha Schumann  <sascha@schumann.cx>

    * (PHP_4)
      main/SAPI.h:
      cvs server: warning: file `main/SAPI.h' seems to still contain conflict
      indicators
      
      ..but it checks it in nevertheless.

    * main/SAPI.c
      main/SAPI.h
      sapi/apache/mod_php4.c:
      add sapi_get_target_uid/_gid for obtaining information about the
      non-privileged user the web server is running as.  this is useful
      for creating shared memory segments which need to be accessed by
      the child processes/threads.

2003-01-21  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      sapi/apache2filter/config.m4:
      MFH: Fixed bug: #21698, httpd.conf not modified with "make install"

    * sapi/apache2filter/config.m4:
      Fixed bug: #21698, httpd.conf not modified with "make install"

    * ext/ircg/config.m4:
      fix typo

    * (PHP_4_3)
      ext/ircg/config.m4:
      MFH: Fix bug: #21249, configure fails when searching for ircg-config script

    * ext/ircg/config.m4:
      Fix bug: #21249, configure fails when searching for ircg-config script

2003-01-21  Edin Kadribasic  <edink@proventum.net>

    * sapi/embed/EXPERIMENTAL
      sapi/embed/config.m4:
      
      Added missing warning about experimental nature of sapi/embed.

2003-01-21  Pierre-Alain Joye  <paj@pearfr.org>

    * ext/gd/libgd/gd.c:
      Remove the (c), in the future, can we add PHP Licence terms for the new
      functions ?

    * ext/gd/libgd/gd.c:
      Add credits to my functions (thx for the advice Wez&Ilia :)

2003-01-20  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/imap/php_imap.c
      ext/imap/php_imap.h:
      quota function fixes. Thanks Wez.

    * ext/imap/php_imap.c:
      Changed php_error to php_error_docref.
      Removed pointless memory allocation checks.
      Memory leak fix inside quota functions.

2003-01-20  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/pcre/php_pcre.c:
      Fixed bug #21758

2003-01-20  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/msession/msession.c:
      Restore php_error -> php_error_docref patch.

2003-01-20  Sascha Schumann  <sascha@schumann.cx>

    * README.TESTING:
      test commit

2003-01-20  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/credits.c:
      - Add credits for Magnus

2003-01-20  Jani Taskinen  <sniper@iki.fi>

    * ext/gd/config.m4:
      Add test for png.h

2003-01-20  Mark L. Woodward  <mlwmohawk@mohawksoft.com>

    * ext/msession/README
      ext/msession/msession.c
      ext/msession/php_msession.h
      ext/msession/reqclient.h:
      Updated for Msession 1.2.
      Includes new APIs

2003-01-19  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/oracle/oracle.c:
      ZTS fix.

2003-01-19  Zeev Suraski  <zeev@zend.com>

    * acinclude.m4
      configure.in:
      relabel

2003-01-19  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/scanf.c:
      Improved the patched part to prevent further potential bugs

2003-01-19  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/oracle/oracle.c:
      fixed typos

2003-01-19  Derick Rethans  <d.rethans@jdimedia.nl>

    * README.TESTING:
      - Moved to http://qa.php.net/write-test.php

2003-01-19  Harald Radi  <harald.radi+coding.php@nme.at>

    * ext/standard/basic_functions.c
      main/php_ini.c:
      ini patch to allow 'entry[] = value' entries

2003-01-19  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/string.c
      ext/standard/tests/strings/bug21744.phpt:
      Fixed bug #21744(21741)
      Added test case for the bug

2003-01-19  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/dbase/dbf_rec.c
      ext/oci8/oci8.c
      ext/oracle/oracle.c
      ext/rpc/com/com.c
      ext/rpc/com/conversion.c
      ext/rpc/java/java.c
      ext/w32api/w32api.c:
      ZTS fixes.

    * ext/mcal/php_mcal.c:
      Changed php_error to php_error_docref.
      Make mcal compile with ZE2.

    * ext/dbase/dbf_rec.c
      ext/dio/dio.c
      ext/hwapi/hwapi.cpp
      ext/ingres_ii/ii.c
      ext/mime_magic/mime_magic.c
      ext/oci8/oci8.c
      ext/oracle/oracle.c
      ext/ovrimos/ovrimos.c
      ext/pcre/php_pcre.c
      ext/pdf/pdf.c
      ext/pfpro/pfpro.c
      ext/posix/posix.c
      ext/pspell/pspell.c
      ext/recode/recode.c
      ext/rpc/com/com.c
      ext/rpc/com/com_wrapper.c
      ext/rpc/com/conversion.c
      ext/rpc/com/variant.c
      ext/rpc/dotnet/dotnet.cpp
      ext/rpc/java/java.c
      ext/session/session.c
      ext/snmp/winsnmp.c
      ext/standard/filters.c
      ext/sysvsem/sysvsem.c
      ext/sysvshm/sysvshm.c
      ext/w32api/w32api.c:
      Changed php_error to php_error_docref.

2003-01-18  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/credits.c:
      s/4.4/5.0

2003-01-18  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/bz2/bz2.c
      ext/curl/interface.c
      ext/cyrus/cyrus.c
      ext/ircg/ircg.c
      ext/ldap/ldap.c
      ext/mnogosearch/php_mnogo.c
      ext/msession/msession.c
      ext/msql/php_msql.c
      ext/mssql/php_mssql.c
      ext/odbc/birdstep.c
      ext/odbc/php_odbc.c
      ext/sysvmsg/sysvmsg.c
      ext/xslt/sablot.c:
      Changed php_error to php_error_docref.
      
      Thanks to Marcus Börger for writing a script that significantly simplifies
      this process.

    * ext/pcre/php_pcre.c:
      Fixed bug #21732 (Added a sanity check, that prevents parameter mismatch).

    * ext/swf/swf.c
      ext/xslt/sablot.c
      ext/yp/yp.c
      ext/zip/zip.c:
      Changed php_error to php_error_docref.

    * ext/wddx/wddx.c
      ext/yaz/php_yaz.c:
      Removed pointless memory allocation checks.
      Changed php_error to php_error_docref.

    * ext/bz2/bz2.c
      ext/db/db.c
      ext/dba/dba.c
      ext/dbx/dbx.c
      ext/dbx/dbx_odbc.c
      ext/domxml/php_domxml.c
      ext/fbsql/php_fbsql.c
      ext/fdf/fdf.c
      ext/hwapi/hwapi.cpp
      ext/hyperwave/hw.c
      ext/iconv/iconv.c
      ext/informix/ifx.ec
      ext/ingres_ii/ii.c
      ext/interbase/interbase.c
      ext/ldap/ldap.c
      ext/mbstring/mbstring.c
      ext/mbstring/php_mbregex.c
      ext/mcal/php_mcal.c
      ext/mcrypt/mcrypt.c
      ext/mnogosearch/php_mnogo.c
      ext/msql/php_msql.c
      ext/mssql/php_mssql.c
      ext/mysql/php_mysql.c
      ext/oci8/oci8.c
      ext/odbc/php_odbc.c
      ext/openssl/openssl.c
      ext/oracle/oracle.c
      ext/ovrimos/ovrimos.c
      ext/pdf/pdf.c
      ext/pgsql/pgsql.c
      ext/posix/posix.c
      ext/pspell/pspell.c
      ext/qtdom/qtdom.c
      ext/session/session.c
      ext/sockets/sockets.c
      ext/standard/exec.c
      ext/standard/file.c
      ext/standard/image.c
      ext/standard/info.c
      ext/standard/metaphone.c
      ext/standard/string.c
      ext/xml/php_xml.h
      ext/xml/xml.c
      ext/zlib/zlib.c
      sapi/aolserver/aolserver.c
      sapi/apache/php_apache.c
      sapi/apache2filter/php_functions.c
      sapi/apache_hooks/php_apache.c:
      Removed pointless memory allocation checks.

2003-01-18  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * tests/lang/bug21094.phpt:
      Added test case for bug #21094

    * ext/standard/scanf.c:
      WS

2003-01-18  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/exif/exif.c:
      correct my fault here and documnet the sense of the test

2003-01-18  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/tests/strings/bug21730.phpt:
      
      Fixed typo

    * ext/standard/tests/strings/bug21730.phpt:
      Added test case for bug #21730

2003-01-18  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/exif/exif.c:
      Additional memory allocation fixes by Marcus Börger.

2003-01-18  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/scanf.c:
      Tons of WS fixes

2003-01-18  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/exif/exif.c:
      Removed the no longer needed memory allocation checks.

2003-01-18  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/scanf.c:
      Fixed bug #21726 and #21730

2003-01-18  Andrey Hristov  <andrey@webgate.bg>

    * ext/standard/basic_functions.c
      ext/standard/php_var.h
      ext/standard/var.c:
      Renamed get_memory_usage() to memory_get_usage() (per Andi's advice)
      This doesn't break any BC.

2003-01-18  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/standard/file.c:
      Fix potential problem for 64-bit architectures.

2003-01-18  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/file.c:
      - Fixed memleak in fscanf().

    * ext/standard/tests/general_functions/proc_open.phpt:
      - Skip test if the function to test is not available

2003-01-18  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      ext/imap/config.m4
      ext/imap/php_imap.c:
      MFH: Fix bug: #21687, imap extension does not include gss authentication
      mechanism

    * ext/imap/config.m4
      ext/imap/php_imap.c:
      Fix bug: #21687, imap extension does not include gss authentication
      mechanism

2003-01-17  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/tests/image/getimagesize.phpt:
      Added missing test result.

2003-01-17  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * header:
      Bump year.

    * win32/md5crypt.c:
      WS fix

2003-01-17  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/gd/gd.c:
      Removed pointless checks of array_init() return value.

2003-01-17  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      Fixed a quoted printable decoder so that it would conform to RFC2045.

2003-01-17  Sascha Schumann  <sascha@schumann.cx>

    * sapi/thttpd/thttpd.c
      sapi/thttpd/thttpd_patch:
      Fix POST handling once and for all.  The daemon now never blocks and
      handles
      uploads of up to 2GB on 32 bit platforms.
      
      Uploads >16KB are put into a file-backed mmap area.
      
      SG(request_info).content_type got corrupted somewhere. As a workaround,
      we provide SAPI with a duplicate of the original string.

2003-01-17  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/standard/image.c
      ext/standard/tests/image/image_type_to_mime_type.phpt
      ext/standard/tests/image/test1pix.jp2:
      fix jp2 detection and add testfile

2003-01-17  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/gd/gd.c
      ext/gd/libgd/gd.c
      ext/gd/libgd/gd.h
      ext/gd/libgd/gd_gd2.c
      ext/gd/libgd/gd_jpeg.c:
      Syncronize bundled GD library with latest GD (2.0.11).

2003-01-17  Derick Rethans  <d.rethans@jdimedia.nl>

    * (PHP_4_3)
      ext/standard/info.c:
      - MFH: Fixed a bug that made that no newline was displayed when there was
      no
        value for a row.

    * ext/standard/info.c:
      - Fixed a bug that made that no newline was displayed when there was no
      value
        for a row.

2003-01-17  Andrey Hristov  <andrey@webgate.bg>

    * ext/swf/swf.c:
      Removed pointless checks around array_init().

2003-01-17  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/imap/php_imap.c:
      Fixed memory leaks in imap_get_quota & imap_get_quotaroot.
      Removed pointless checks around array_init().

2003-01-17  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      Significant speed enhancements. I was underestimating the power of recent
      CPUs :)

2003-01-17  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * main/internal_functions_win32.c:
      Move ZEND_ENGINE_2 check to where it is defined.

2003-01-16  Harald Radi  <harald.radi+coding.php@nme.at>

    * main/config.w32.h
      main/internal_functions_win32.c:
      move the ZE2 check into internal_functions_win32.c

    * ext/bcmath/libbcmath/src/config.h:
      revert previous commit

    * ext/bcmath/libbcmath/src/config.h:
      unbreak the build

2003-01-16  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/pdf/pdf.c:
      Fixed bug #21651 (crash in pdf_open_memory_image() when inserting a
      non truecolor image).

2003-01-16  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      Finally fixed a qp encoder bug that line break characters that appear
      exactly
      at the end of the chunk lost in the output.

2003-01-16  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * ext/standard/tests/image/getimagesize.phpt
      ext/standard/tests/image/image_type_to_mime_type.phpt:
      - JPEG 2000 support

    * ext/standard/image.c
      ext/standard/php_image.h:
      - corrected error in file detection for very small files
      - JPEG 2000 support, mostly Adam Wright <adam@elysium.ltd.uk>

2003-01-16  Harald Radi  <harald.radi+coding.php@nme.at>

    * ext/rpc/java/java.dsp:
      change library name

    * ext/rpc/skeleton/php_skeleton.h
      ext/rpc/skeleton/skeleton.c
      ext/rpc/skeleton/skeleton.h:
      update skeleton

    * win32/php4dllts.dsp:
      fix path to config.w32.h

    * main/internal_functions_win32.c:
      add COM

    * main/config.w32.h:
      prevent HEAD + ZE1 builds and add COM

    * ext/rpc/com/com.dsp:
      for those who prefer to have com as a shared lib

2003-01-16  Sascha Schumann  <sascha@schumann.cx>

    * (PHP_4)
      configure.in
      main/php_version.h:
      Open up the PHP_4 branch which has been derived from the current PHP_4_3
      branch, so we don't introduce any ZE2-related changes.
      
      This branch has the purpose of housing experimental patches in the
      context of PHP 4/ZE1.  Patches which don't qualify as bug fixes
      should not be committed to the PHP_4_3 branch.
      
      Note: The code on this branch is unlikely to be ever released in the form
            of a standard PHP release.  Commit new features to the HEAD branch!
            Patches for this branch should be the exception.
      
      Note: The version is "4.5.0", because 4.4.0 has been used for some time
            in HEAD before being switched to 5.0.0.  I would have used something
            like "4.X.X", but letters are not really supported by the current
            system.

2003-01-16  Harald Radi  <harald.radi+coding.php@nme.at>

    * ext/rpc/handler.h
      ext/rpc/layer.h
      ext/rpc/php_rpc.h
      ext/rpc/rpc.c
      ext/rpc/rpc.h
      ext/rpc/com/com.c
      ext/rpc/com/com.h
      ext/rpc/com/php_com.h
      ext/rpc/skeleton/skeleton.c
      ext/rpc/skeleton/skeleton.h:
      make layers loadable as self-sustaining php extension
      which registeres itself in the rpc framework.

2003-01-16  Dan Kalowsky  <dank@deadmime.org>

    * ext/odbc/php_odbc.h:
      typo corrected

    * ext/odbc/php_odbc.c
      ext/odbc/php_odbc.h:
      Adding in test ability for WIndows to fetch_objects

2003-01-16  Edin Kadribasic  <edink@proventum.net>

    * ext/standard/math.c:
      Fixed bug #21648

2003-01-16  Sascha Schumann  <sascha@schumann.cx>

    * php.ini-dist
      php.ini-recommended
      ext/session/mod_files.c
      ext/session/php_session.h
      ext/session/session.c:
      Add INI setting session.hash_bits_per_character which enables developers
      to choose how session ids are represented, regardless of the hash
      algorithm.

2003-01-16  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/oracle/oracle.c:
      Fixed bug #20079 (made ora_logoff return TRUE on success).

2003-01-15  Edin Kadribasic  <edink@proventum.net>

    * win32/php_modules.dsw:
      Added some missing modules. Removed some that are built in or moved to
      ext/rpc.

2003-01-15  Harald Radi  <harald.radi+coding.php@nme.at>

    * (PHP_4_3)
      ext/rpc/.cvsignore
      ext/rpc/CREDITS
      ext/rpc/EXPERIMENTAL
      ext/rpc/RPC_HOWTO
      ext/rpc/handler.h
      ext/rpc/hash.h
      ext/rpc/layer.h
      ext/rpc/php_rpc.h
      ext/rpc/rpc.c
      ext/rpc/rpc.h
      ext/rpc/rpc_proxy.c
      ext/rpc/rpc_proxy.h
      ext/rpc/com/.cvsignore
      ext/rpc/com/CREDITS
      ext/rpc/com/TODO
      ext/rpc/com/com.c
      ext/rpc/com/com.h
      ext/rpc/com/com_wrapper.c
      ext/rpc/com/com_wrapper.h
      ext/rpc/com/conversion.c
      ext/rpc/com/conversion.h
      ext/rpc/com/dispatch.c
      ext/rpc/com/variant.c
      ext/rpc/com/variant.h
      ext/rpc/dotnet/.cvsignore
      ext/rpc/dotnet/CREDITS
      ext/rpc/dotnet/EXPERIMENTAL
      ext/rpc/dotnet/README
      ext/rpc/dotnet/dotnet.cpp
      ext/rpc/dotnet/dotnet.dsp
      ext/rpc/dotnet/dotnet.php
      ext/rpc/dotnet/php_dotnet.h
      ext/rpc/java/.cvsignore
      ext/rpc/java/CREDITS
      ext/rpc/java/EXPERIMENTAL
      ext/rpc/java/Makefile.frag
      ext/rpc/java/README
      ext/rpc/java/config.m4
      ext/rpc/java/except.php
      ext/rpc/java/java.c
      ext/rpc/java/java.dsp
      ext/rpc/java/jawt.php
      ext/rpc/java/jver.php
      ext/rpc/java/reflect.java
      ext/rpc/skeleton/skeleton.c
      ext/rpc/skeleton/skeleton.h
      ext/rpc/tests/test1.php
      ext/rpc/tests/test2.php
      ext/rpc/tests/test3.php
      ext/rpc/tests/test4.php
      ext/rpc/tests/tests.php
      ext/rpc/xmlrpc/.cvsignore
      ext/rpc/xmlrpc/CREDITS
      ext/rpc/xmlrpc/EXPERIMENTAL
      ext/rpc/xmlrpc/config.m4
      ext/rpc/xmlrpc/php_xmlrpc.h
      ext/rpc/xmlrpc/xmlrpc-epi-php.c
      ext/rpc/xmlrpc/xmlrpc.dsp
      ext/rpc/xmlrpc/libxmlrpc/.cvsignore
      ext/rpc/xmlrpc/libxmlrpc/README
      ext/rpc/xmlrpc/libxmlrpc/acinclude.m4
      ext/rpc/xmlrpc/libxmlrpc/base64.c
      ext/rpc/xmlrpc/libxmlrpc/base64.h
      ext/rpc/xmlrpc/libxmlrpc/encodings.c
      ext/rpc/xmlrpc/libxmlrpc/encodings.h
      ext/rpc/xmlrpc/libxmlrpc/queue.c
      ext/rpc/xmlrpc/libxmlrpc/queue.h
      ext/rpc/xmlrpc/libxmlrpc/simplestring.c
      ext/rpc/xmlrpc/libxmlrpc/simplestring.h
      ext/rpc/xmlrpc/libxmlrpc/system_methods.c
      ext/rpc/xmlrpc/libxmlrpc/system_methods_private.h
      ext/rpc/xmlrpc/libxmlrpc/xml_element.c
      ext/rpc/xmlrpc/libxmlrpc/xml_element.h
      ext/rpc/xmlrpc/libxmlrpc/xml_to_dandarpc.c
      ext/rpc/xmlrpc/libxmlrpc/xml_to_dandarpc.h
      ext/rpc/xmlrpc/libxmlrpc/xml_to_soap.c
      ext/rpc/xmlrpc/libxmlrpc/xml_to_soap.h
      ext/rpc/xmlrpc/libxmlrpc/xml_to_xmlrpc.c
      ext/rpc/xmlrpc/libxmlrpc/xml_to_xmlrpc.h
      ext/rpc/xmlrpc/libxmlrpc/xmlrpc.c
      ext/rpc/xmlrpc/libxmlrpc/xmlrpc.h
      ext/rpc/xmlrpc/libxmlrpc/xmlrpc.m4
      ext/rpc/xmlrpc/libxmlrpc/xmlrpc_introspection.c
      ext/rpc/xmlrpc/libxmlrpc/xmlrpc_introspection.h
      ext/rpc/xmlrpc/libxmlrpc/xmlrpc_introspection_private.h
      ext/rpc/xmlrpc/libxmlrpc/xmlrpc_private.h
      ext/rpc/xmlrpc/libxmlrpc/xmlrpc_win32.h:
      removing this stuff from the php 4.3 branch

2003-01-15  Sascha Schumann  <sascha@schumann.cx>

    * main/SAPI.h:
      scrap STANDARD_SAPI_MODULE_PROPERTIES; it is causing more harm than good

2003-01-15  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/interbase/interbase.c:
      More build fixes.

2003-01-15  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/standard/basic_functions.c
      ext/standard/exec.h
      ext/standard/proc_open.c
      ext/standard/proc_open.h
      ext/standard/tests/general_functions/proc_open.phpt:
      Relieve scripts of the burden of ensuring that all pipes are closed prior
      to calling proc_close().
      Implement proc_get_status(resource $process) which returns an array of
      information about a process created with proc_open().
      The information includes:
      array(
      	"command" => string "name of the command",
      	"pid" => long process identifier,
      	"running" => bool true if the process is still running
      	"exitcode" => long exitcode if the process exited
      	"signaled" => bool true if the process was signaled
      	"termsig" => long signal number if signaled
      	"stopped" => bool true if the process is stopped
      	"stopsig" => long signal number if stopped
      );

2003-01-15  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/informix/ifx.ec:
      Fixed a typo.

2003-01-15  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * main/config.w32.h:
      Define PHP_CAN_SUPPORT_PROC_OPEN.

    * win32/php4dll.dsp
      win32/php4dllts.dsp:
      Add proc_open.c to project.

2003-01-15  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/standard/basic_functions.c
      ext/standard/config.m4
      ext/standard/exec.c
      ext/standard/proc_open.c:
      - Move proc_open code to a source file of it's own.
      - Tidy up that netware mess by performing a configure check which will
        define the symbol PHP_CAN_SUPPORT_PROC_OPEN if PHP can support
      proc_open.
      - Protected the proc_open specific code with #ifdef
      PHP_CAN_SUPPORT_PROC_OPEN
        so that user-space scripts can use function_exists and react
      accordingly.
      
      ** Heads Up Win32: You need to add ext/standard/proc_open.c to the DSP and
      ** #define PHP_CAN_SUPPORT_PROC_OPEN in the w32 config header.

2003-01-15  Jani Taskinen  <sniper@iki.fi>

    * (PHP_4_3)
      ext/session/mod_files.c:
      MFH:  handle ERANGE from strtol properly

2003-01-15  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/interbase/interbase.c:
      Build fixes.

2003-01-15  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      Fixed a qp encoder bug that the constructor sometimes fails if
      line-breaking mode is off.

2003-01-15  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/rpc/java/java.c:
      Typo fixes.

    * ext/informix/ifx.ec:
      Fixed typo.

    * ext/sybase/php_sybase_db.c
      ext/sybase_ct/php_sybase_ct.c:
      Various corrections.

    * ext/interbase/interbase.c:
      Fixed typos.

    * ext/dbase/dbase.c:
      Typo corrections.

2003-01-15  Sascha Schumann  <sascha@schumann.cx>

    * main/SAPI.c
      main/SAPI.h:
      whitespace

2003-01-15  Yasuo Ohgaki  <yohgaki@ohgaki.net>

    * ext/pgsql/pgsql.c:
      Fixed proto

2003-01-15  Adam Dickmeiss  <adam@indexdata.dk>

    * ext/yaz/php_yaz.c
      ext/yaz/php_yaz.h:
      Fix functions comments (connection resource rather than connection id).
      New functions yaz_set_option and yaz_get_option.
      Cleanup in yaz_connect.

    * ext/yaz/config.m4:
      Fix lib config for the case where YAZ depends on multiple libraries

2003-01-15  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/interbase/interbase.c:
      Kill compile warning.

    * ext/informix/ifx.ec
      ext/interbase/interbase.c
      ext/sybase/php_sybase_db.c
      ext/sybase_ct/php_sybase_ct.c:
      Newer parameter parsing API.

    * ext/hwapi/hwapi.cpp
      ext/hyperwave/hw.c
      ext/qtdom/qtdom.c
      ext/rpc/dotnet/dotnet.cpp
      ext/rpc/java/java.c
      ext/snmp/winsnmp.c:
      Getting rid of the old API parsing code.

    * ext/filepro/filepro.c:
      Changed php_error to php_error_docref.
      Made use of the more recent parameter parsing API, zend_get_parameters*.

    * ext/dbase/dbase.c:
      Removed pointless checks around array_init() & ZE memory allocation macros.
      Changed php_error to php_error_docref.
      Dropped getParam* parameter parsing API in favor of zend_get_parameters*.

    * ext/cpdf/cpdf.c
      ext/cpdf/php_cpdf.h:
      This patch allows cpdf to be compiled in conjunction with ncurses, which
      was
      not possible before due to conflicting defines.

2003-01-14  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/rpc/xmlrpc/xmlrpc-epi-php.c:
      Porting of patch applied to ext/xmlrpc.

    * ext/xmlrpc/xmlrpc-epi-php.c:
      Made the code use php_error_docref().
      Removed pointless checks around array_init() and emalloc().
      Switched to zend_get_parameters_ex() argument parsing API.

    * ext/domxml/php_domxml.c:
      Changed getParameters() to zend_get_parameters_ex().

    * ext/hyperwave/hw.c:
      Fixed compile warnings.

    * ext/cpdf/cpdf.c:
      One more typo.

    * ext/cpdf/cpdf.c:
      Fixed typos.

2003-01-14  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/iconv/iconv.c:
      Appended my name to the list of authors

    * ext/iconv/tests/iconv_mime_decode.phpt:
      Test update for new feature

2003-01-14  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/cpdf/cpdf.c:
      Switched from old getParse* argument parsing API to a more recent
      zend_get_parameters*.

2003-01-14  Andrey Hristov  <andrey@webgate.bg>

    * ext/standard/basic_functions.c
      ext/standard/php_var.h
      ext/standard/var.c:
      added function get_memory_usage(). available only when PHP is compiled
      with --enable-memory-limit

2003-01-14  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/hyperwave/hg_comm.c:
      Fixed compile warning & removed useless variable.

    * ext/hyperwave/hw.c:
      Changed php_error to php_error_docref.
      Got rid off the ancient getParameters* parameter parsing API.

2003-01-14  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      Added a new option "force-encode-first" to the quoted-printable encoder
      as per Wez's request. If enabled, the encoder forcefully does qp
      tranformation on every first character of lines in incoming stream.

2003-01-14  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/cpdf/cpdf.c:
      Changed php_error() to php_error_docref().
      Made pdfdoc retrieval a macro.

2003-01-14  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/quot_print.c:
      Made php_quot_print_decode() RFC2045-compliant

2003-01-14  Edin Kadribasic  <edink@proventum.net>

    * (PHP_4_3)
      NEWS:
      Bugfixing news

    * ext/gettext/gettext.dsp:
      MFB: bind_textdomain_codeset() availability on windows

    * (PHP_4_3)
      ext/gettext/gettext.dsp:
      Made bind_textdomain_codeset() available on windows (fixes #21525).

2003-01-14  Derick Rethans  <d.rethans@jdimedia.nl>

    * win32/install.txt:
      s/gd/gd2

2003-01-14  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/sockets/sockets.c:
      Changed php_error to php_error_docref().
      Removed pointless checks around array_init().

2003-01-14  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      Fixed small memory leak that occurs when the invalid line length is passed
      to the qprint ctor.

    * ext/standard/filters.c:
      Fixed quoted-printable encoder so that it produces RFC2045 complicant
      output. As per this specification requirement, the constructor now accepts
      three options: binary (boolean), line-len (uint), line-break-chars
      (string).

2003-01-13  Jani Taskinen  <sniper@iki.fi>

    * ext/informix/config.m4
      ext/informix/config.m4:
      Fixed bug: #21543, Informix version detection fails

2003-01-13  Frank M. Kromann  <frank@kromann.info>

    * ext/rpc/com/conversion.c:
      false should be VT_FALSE

2003-01-13  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * (PHP_4_3)
      tests/run-test/test008.phpt:
      MFH

    * tests/run-test/test008.phpt:
      Fixed typoFixed typoFixed typoFixed typoFixed typoFixed typoFixed typoFixed
      typo

2003-01-13  Andrey Hristov  <andrey@webgate.bg>

    * ext/standard/array.c
      ext/standard/basic_functions.c
      ext/standard/php_array.h:
      added array_combine().
      Creates an array by using the elements of the first parameter as keys and
      the elements of the second as correspoding keys. Error is thrown in case
      the arrays has different number of elements. Number of elements 0 is not
      valid for both parameters.

2003-01-13  Edin Kadribasic  <edink@proventum.net>

    * sapi/servlet/servlet.dsp:
      Adjust paths for the new location of ext/rpc/java

    * ext/rpc/java/java.dsp:
      Adjust paths to the new location java.dsp

    * ext/rpc/xmlrpc/xmlrpc-epi-php.c:
      Fix ZTS build here too.

    * ext/xmlrpc/xmlrpc-epi-php.c:
      Fixed ZTS build.

2003-01-13  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      Fixed a silly segfault bug caused by lack of strict type checking

2003-01-13  Sascha Schumann  <sascha@schumann.cx>

    * build/buildcheck.sh:
      which is not portable. use our bundled shtool instead.

2003-01-13  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      . Implemented a common filter parameter parsing function.
      . Added automatic line-breaking feature for base64 encode filter. This
        can be turned on by putting a option entry "base64-encode.line-length"
        to the filter parameters.

2003-01-13  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/domxml/php_domxml.c:
      - Fix ZTS build

2003-01-12  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * tests/lang/bug21600.phpt:
      
      Added test case for bug #21600

    * ext/standard/filters.c:
      Fixed a bug of the base64 decoder that a sequence of intervening
      characters that are supposed to be ignored by the decoder cause output
      corruption.

2003-01-12  Stanislav Malyshev  <stas@zend.com>

    * ext/standard/aggregation.c:
      ZE2 compatibility

2003-01-12  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * ext/standard/basic_functions.c
      ext/standard/info.c:
      ZTS fixes.

2003-01-12  Stanislav Malyshev  <stas@zend.com>

    * ext/standard/aggregation.c:
      Disable ZE2-incompatible parts

    * ext/standard/var.c:
      remove unneeded var

2003-01-12  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      Fixed infinite loop bug when an invalid quoted-printable escape sequence
      appears in the streem.

    * ext/standard/filters.c:
      Fixed error msg format so it correctly reports the actual filter name

2003-01-12  Sascha Schumann  <sascha@schumann.cx>

    * php.ini-recommended:
      recommending SHA-1 as hash function

    * php.ini-dist:
      sync entries

    * php.ini-dist
      php.ini-recommended
      ext/session/php_session.h
      ext/session/session.c:
      add INI setting session.hash_function
      add support for creating session ids using SHA-1
      source more entropy for session ids

    * ext/session/mod_files.c:
      handle ERANGE from strtol properly

2003-01-12  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      . Updated quoted-printable filter by a neater implementation.
      . Changed emalloc family functions to pemalloc ones for persistent
      filters.
      . Changed base64 and quoted-printable filter names to
      "convert.base64-encode",
        "convert.base64-decode", "convert.quoted-printable-encode", and
        "convert.quoted-printable-decode" respectively for the consistency that
        may be requested later.

2003-01-12  Derick Rethans  <d.rethans@jdimedia.nl>

    * NEWS:
      - Update NEWS to show 5.0.0

2003-01-12  Jan Lehnardt  <jan@dasmoped.net>

    * run-tests.php:
       - fix typo

2003-01-12  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * ext/rpc/java/config.m4
      sapi/servlet/Makefile.frag
      sapi/servlet/config.m4
      sapi/servlet/servlet.c
      sapi/servlet/servlet.c
      sapi/servlet/servlet.java:
      Patch by Giuseppe Tanzilli <g.tanzilli@gruppocsf.com>.

2003-01-12  Frank M. Kromann  <frank@kromann.info>

    * ext/mssql/php_mssql.c:
      Release skiped results. This will free memory on the server.
      Make mssql_execute work for stored procedures with and without returning
      result sets

2003-01-11  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/sybase_ct/php_sybase_ct.c:
      Do not 'convert' double columns to integers after the 1st row in the result
      set.

    * ext/sybase_ct/php_sybase_ct.c:
      Fixed handling of NUMERIC type, when it contains numbers that could
      potentially exceed the interger limit.

2003-01-11  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/browscap.c
      ext/standard/datetime.c
      ext/standard/file.c
      ext/standard/formatted_print.c
      ext/standard/pack.c
      ext/standard/reg.c
      ext/standard/string.c:
      Reverted because correct decision has not been made yet.

    * sapi/apache2filter/php_functions.c:
      This patch is likely to fix win32 build

    * ext/standard/browscap.c
      ext/standard/datetime.c
      ext/standard/pack.c
      ext/standard/reg.c
      ext/standard/string.c:
      Reduced warnings in ZE2 build

    * ext/standard/file.c
      ext/standard/formatted_print.c:
      Reduced compiler warnings in ZE2 build

2003-01-11  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/string.c:
      Added stripos() & strripos() functions.
      Added 3rd parameter (offset) to strrpos().

2003-01-11  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * ext/rpc/rpc.c:
      Add missing ,.

2003-01-11  Harald Radi  <harald.radi+coding.php@nme.at>

    * ext/rpc/rpc.c
      ext/rpc/rpc_proxy.c
      ext/rpc/com/variant.c:
      fix build

2003-01-11  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * win32/php4dllts.dsp:
      Leftover.

2003-01-11  Ilia Alshanetsky  <ilia@prohost.org>

    * sapi/cli/php_cli.c:
      Fix the line numbering when the 1st line in the script is #!.

2003-01-10  Harald Radi  <harald.radi+coding.php@nme.at>

    * main/config.w32.h
      main/internal_functions_win32.c
      win32/php4dllts.dsp:
      HEAD defaults to build with ZE2 now

2003-01-10  Frank M. Kromann  <frank@kromann.info>

    * ext/mssql/php_mssql.c:
      Fixing copy and paste errors

    * ext/mssql/php_mssql.c:
      Avoid warnings when running stored procedures returning multiple results
      before setting output and return values.
      Additional results can be skipped by the optional parameter to
      mssql_execute

2003-01-10  Christian Stocker  <chregu@phant.ch>

    * ext/domxml/php_domxml.c:
      Throw error if object is not a XML_DOCUMENT_NODE in domxml_dump_node()

    * (PHP_4_3)
      ext/domxml/php_domxml.c:
      Throw error if object is not a XML_DOCUMENT_NODE

2003-01-10  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/standard/math.c:
      Fix the number format fix when the number of decimal places is 0.

2003-01-10  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/xmlrpc/xmlrpc-epi-php.c:
      - Fixed bug #20155: xmlrpc compile problem with zendengine2 (Path by Jan
        Schneider)

2003-01-10  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/mime_magic/mime_magic.c
      ext/standard/reg.c:
      Reduced compiler warnings

    * ext/iconv/iconv.c:
      Added missing cast operators

2003-01-10  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/gd/libgd/gd.c:
      Fixed ImageRotate when rotation angle is 90 degrees, patch by
      leon@leonatkinson.com.

2003-01-10  Stig Bakken  <ssb@fast.no>

    * (RELEASE_1_0_1)
      pear/package-PEAR.xml:
      - prepare 1.0.1 release

2003-01-10  Ilia Alshanetsky  <ilia@prohost.org>

    * (PHP_4_3)
      NEWS:
      Bug fixing news.

2003-01-10  Stig Bakken  <ssb@fast.no>

    * (RELEASE_1_0_1)
      pear/scripts/pear.in:
      - obey PHP_PEAR_INSTALL_DIR and PHP_PEAR_PHP_BIN environment variables

    * (RELEASE_1_0_1)
      pear/PEAR/Command/Package.php:
      - verbosity fix for cvstag and cvsdiff commands

    * (RELEASE_1_0_1)
      pear/OS/Guess.php:
      - TODO item

    * pear/PEAR/Command/Package.php:
      - add "cvsdiff" command

    * (RELEASE_1_0_1)
      pear/PEAR/Config.php:
      - use getenv() instead of $_ENV[]

2003-01-09  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/file.c:
      CS fixes

    * ext/standard/file.c:
      Fixed a memory corruption that occurs when an unterminated " is encountered
      this bug maybe be related to #21556.

2003-01-09  Frank M. Kromann  <frank@kromann.info>

    * ext/mssql/config.m4:
      Adding extended checks for where FreeTDS is installed

2003-01-09  Ilia Alshanetsky  <ilia@prohost.org>

    * main/safe_mode.c:
      Fixed compiler warnings.

2003-01-09  Sara Golemon  <php@alphaweb.net>

    * ext/standard/filestat.c
      main/safe_mode.c
      main/safe_mode.h:
      Bug #21531   file_exists() and other filestat functions throw errors when
      in safe mode and file/directory does not exist.
      Extended php_checkuid function to add "flags" field via rename to
      php_checkuid_ex with alias for BC in functions that do want safe mode
      errors thrown.

2003-01-09  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/ctype/ctype.c:
      Fixed typo

2003-01-09  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/standard/basic_functions.c
      ext/standard/basic_functions.h
      ext/standard/formatted_print.c
      tests/strings/002.phpt:
      Implement fprintf() and vfprintf().
      Add a couple of tests.

2003-01-09  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * (PHP_4_3)
      main/.cvsignore
      main/config.w32.h
      main/config.w32.h.in
      win32/php4dll.dsp
      win32/php4dllts.dsp:
      MFH: Revert config.w32.h.in -> config.w32.h build step.

2003-01-09  Jani Taskinen  <sniper@iki.fi>

    * configure.in:
      Fix bug: #21511, config.status warning

2003-01-09  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/standard/math.c
      ext/standard/tests/math/bug21523.phpt:
      Fix Bug #21523 - number_format could cause a memory allocation for a
      negative memory size in situations where the sprintf implementation of the
      host system generated less decimal places than were requested.
      
      Resolved this issue by making number_format examine the string returned
      by spprintf and have it pad to the correct number of decimal places.
      
      Added a test-case based on the bug report; the length of decimal places
      required to trigger this bug is sprintf implementation dependent; as the
      implementation is now using spprintf (provided by PHP), that number is
      78 digits (NDIG - 2).
      
      

2003-01-09  Stig Bakken  <ssb@fast.no>

    * (RELEASE_1_0_1)
      pear/PEAR.php:
      - added debug_backtrace() support to PEAR errors

    * (RELEASE_1_0_1)
      pear/System.php:
      - System::which() now checks .exe .bat .cmd and .com on Windows

    * (RELEASE_1_0_1)
      pear/PEAR/Frontend/CLI.php:
      - cleanups

2003-01-09  Zeev Suraski  <zeev@zend.com>

    * configure.in
      main/php_version.h:
      Time for an update

2003-01-09  Frank M. Kromann  <frank@kromann.info>

    * ext/mssql/php_mssql.c:
      Use the correct link when checking for more results on stored procedures

    * ext/mssql/php_mssql.c
      ext/mssql/php_mssql.h:
      Restire BC for mssql_execute(). This will not break the new feature for
      handling
      multiple results from a single stired procedure.
      Adding mssql_free_statement()

2003-01-09  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/fsock.c:
      Fixed bug #21529 (memory corruption by fsockopen()).

2003-01-09  Frank M. Kromann  <frank@kromann.info>

    * ext/mssql/php_mssql.c:
      changed from LVAL to RESVAL macro

2003-01-09  Jani Taskinen  <sniper@iki.fi>

    * ext/standard/image.c:
      Fix the ZTS build.

2003-01-08  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      Reimplemented base64 filter to use iconv()-like facility for flexibility.

2003-01-08  Frank M. Kromann  <frank@kromann.info>

    * ext/fbsql/php_fbsql.h
      ext/mssql/php_mssql.c
      ext/mssql/php_mssql.h:
      Changed global data type to avoid problems with initialization

2003-01-08  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/image.c
      ext/standard/php_image.h:
      Added support for WBMP images.

    * ext/gd/gd.c
      ext/gd/libgd/gd_io_dp.c:
      Fixed bug #21518.
      Fixed memory in leak ImageCreateFromString().
      Fixed a bug that prevented proper identification of WBMP images and thus
      prevented ImageCreateFromString() from working on those images.

    * (PHP_4_3)
      NEWS:
      Bug fixing news.

2003-01-08  Zeev Suraski  <zeev@zend.com>

    * ext/session/session.c:
      Fix UMR

2003-01-08  Georg Richter  <georg.richter@phpev.de>

    * (PHP_4_3)
      ext/mysql/php_mysql.c:
      fixed bug 21498

    * ext/mysql/php_mysql.c:
      fixed bug #21498

2003-01-08  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/mcrypt/mcrypt.c:
      Removed unused variable.

    * main/main.c:
      Fixed bug #21499 (more descriptive message in the event of require/include
      failure).

    * sapi/cgi/cgi_main.c
      sapi/cli/php_cli.c:
      Fixed bug #21297. The fix also fixes miscalculation of lines numbers by 1
      due the previously mentioned bug.

    * ext/odbc/php_odbc.c:
      Version is char ;).

2003-01-07  Christian Dickmann  <chrisdicki@gmx.de>

    * pear/PEAR/Config.php:
      fix default umask(); (thx to Mirco MEEBEY Bauer for bringing this behavior
      to my attention and testing the patch)

2003-01-07  Dan Kalowsky  <dank@deadmime.org>

    * ext/odbc/php_odbc.c:
      Version tag for future move to PECL

    * ext/odbc/config.m4
      ext/odbc/php_odbc.c:
      Reverting last change as it really doesn't fix longreadlen problems in all
      cases.

2003-01-07  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      Instances should not be freed in dtor()...

    * ext/standard/filters.c:
      Made error msg format more consistent

2003-01-07  Pierre-Alain Joye  <paj@pearfr.org>

    * ext/gd/gd.c:
      Fix line drawed twice (L. Atkinson)

2003-01-07  Sara Golemon  <php@alphaweb.net>

    * ext/standard/user_filters.c:
      Backout changes between 1.6 and 1.7

2003-01-07  Zeev Suraski  <zeev@zend.com>

    * sapi/cgi/cgi_main.c:
      Add missing call

2003-01-07  Levi Dixon  <ldixon@mail.communityconnect.com>

    * ext/oci8/config.m4
      ext/oci8/oci8.c:
      Added support for Shared Data Mode for OCI8_VERSION >= 8.1, which will
      provide memory savings by sharing common statement data

2003-01-07  Edin Kadribasic  <edink@proventum.net>

    * (PHP_4_3)
      NEWS:
      Bugfix #17098 in the branch

    * (PHP_4_3)
      sapi/apache2filter/sapi_apache2.c:
      MFH:
      Fixed bug #17098 (make Apache aware that PHP scripts represent dynamic
      data
      and should not be cached). Fix suggested by daniel.eckl@gmx.de.

2003-01-07  Ilia Alshanetsky  <ilia@prohost.org>

    * run-tests.php:
      Added a check for availability of PCRE extension needed by test-suite.

2003-01-07  Vincent Blavet  <vincent@blavet.net>

    * pear/Archive/Tar.php:
      - Synchronize with /pear/Archive_Tar/Tar.php 1.5 :
        - Add support for long filenames (greater than 99 characters)
        - Add private methods _readLongHeader() and _writeLongHeader()

2003-01-07  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/domxml/php_domxml.c:
      Fixed ZTS build with ZE2.

    * ext/ftp/ftp.c
      ext/ftp/ftp.h
      ext/ftp/php_ftp.c:
      ZTS cleanup.

2003-01-07  Zeev Suraski  <zeev@zend.com>

    * ext/standard/basic_functions.c:
      whitespace

2003-01-07  Edin Kadribasic  <edink@proventum.net>

    * (PHP_4_3)
      NEWS:
      Bugfixing news

    * win32/sendmail.c:
      MFB:
      Fixed bug #21442 (Crash of mail() on Windows when the first parameter
      is empty).

    * (PHP_4_3)
      win32/sendmail.c:
      Fixed bug #21442 (Crash of mail() on Windows when the first parameter
      is empty).

2003-01-07  Sascha Schumann  <sascha@schumann.cx>

    * ext/mysql/config.m4:
      tell user which header files could not be found

2003-01-07  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/user_filters.c:
      Fixed small leak

2003-01-07  Frank M. Kromann  <frank@kromann.info>

    * ext/mssql/config.m4:
      Making the mssql extension work when build as a shared object

2003-01-07  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/ftp/ftp.c
      ext/ftp/ftp.h
      ext/ftp/php_ftp.c:
      Fixed ZTS build.

    * ext/ftp/ftp.c
      ext/ftp/php_ftp.c:
      MFB + CS

    * (PHP_4_3)
      ext/ftp/ftp.c
      ext/ftp/php_ftp.c:
      Changed perror() to php_error_docref(), fixed bug #21309.
      Made extension use ZE memory allocation wrappers, fixed a memory leak in
      ftp_mkdir.
      Removed duplicate ftp_syst() call inside ftp_systype().
      

2003-01-07  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * NEWS:
      Trivial grammer fix

    * ext/standard/filters.c:
      Implemented quoted-printable stream filter

2003-01-07  Sara Golemon  <php@alphaweb.net>

    * ext/standard/user_filters.c:
      Add option to stream_get_filters() user-defined fiters vs. all filters,
      default to user only

2003-01-07  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/standard/filters.c:
      Implemented string.base64 stream filter

2003-01-06  Stefan Esser  <s.esser@e-matters.de>

    * main/rfc1867.c:
      Adding support for anonymous fileuploads (#21450)

2003-01-06  Wez Furlong  <wez.php@thebrainroom.net>

    * main/streams.c:
      Fix for Bug #20827: where stat is a macro on Tru64.
      Patch from <julien.soula@free.fr>

2003-01-06  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/string.c
      ext/standard/tests/strings/bug21453.phpt:
      Fixed bug #21453 (improper handling of non-terminated <).

    * ext/standard/browscap.c:
      Fixed Bug #21443 and related bug #21468.

2003-01-06  Dan Kalowsky  <dank@deadmime.org>

    * ext/odbc/php_odbc.c:
      Patch for bug #19349

    * ext/odbc/php_odbc.c:
      Correction for bug #21279

2003-01-06  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/iconv/iconv.c
      ext/standard/quot_print.c
      ext/standard/quot_print.h:
      Moved php_quot_print_decode() to quot_print.c so that it can be used
      outside the iconv module

    * ext/iconv/iconv.c:
      Added more RFC2047-compliancy check in iconv_mime_decode()

    * ext/iconv/iconv.c:
      Fixed iconv_mime_decode() so that it comforms to RFC2231

2003-01-06  Georg Richter  <georg.richter@phpev.de>

    * ext/mysql/php_mysql.c:
      fixed missing & (Thx to Sebastian Bergmann)

    * (PHP_4_3)
      ext/mysql/php_mysql.c:
      fixed a missing & (Thx to Sebastian Bergmann

2003-01-06  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/standard/tests/file/userfilters.phpt:
      Make it slightly more obvious that the return value is relative to the
      length
      of the input data.

    * main/php_streams.h:
      Fix for bug #21406; infinite loop during filter flushing.

2003-01-06  Edin Kadribasic  <edink@proventum.net>

    * (PHP_4_3)
      NEWS:
      Bugfixing news.

    * ext/gd/gd_bundled.dsp:
      MFB:
      Fixed bug #20503 (imagesetbrush() availability on windows).

    * (PHP_4_3)
      ext/gd/gd_bundled.dsp:
      Fixed bug #20503 (imagesetbrush() availability on windows).

2003-01-06  Anantha Kesari H Y  <hyanantha@novell.com>

    * ext/pgsql/php_pgsql.h:
      Removed #ifdef NetWare and made the necessary changes in the directory
      structure of NetWare.

    * netware/libpq/libpq-fs.h:
      Header file for PostgreSQL. Moved from netware directory to netware/libpq
      directory.

    * netware/libpq-fs.h:
      This file moved to netware/libpq directory.

2003-01-06  Christian Stocker  <chregu@phant.ch>

    * (PHP_4_3)
      ext/domxml/php_domxml.c:
      - fix crash in domxml_node_insert_before() (by Lukas Schröder)

    * ext/domxml/php_domxml.c
      ext/domxml/php_domxml.h:
      - get_path forgotten in .h file
      - fix crash in domxml_node_insert_before() (by Lukas Schröder)

2003-01-06  Anantha Kesari H Y  <hyanantha@novell.com>

    * netware/phplib.imp:
      Added symbols to build PostgreSQL extension for NetWare.

    * ext/mysql/mysql.mak:
      Changes for NetWare makefile.

    * ext/pgsql/pgsql.mak
      ext/pgsql/php_pgsql.h:
      Makefile added newly and modified the header file for NetWare.

2003-01-06  Christian Stocker  <chregu@phant.ch>

    * (PHP_4_3)
      ext/domxml/php_domxml.c:
      partly MFH from 1.288 (Fixed segfault, when trying to add a node to itself)

    * ext/domxml/php_domxml.c:
      - Fixed segfault, when trying to add a node to itself.

2003-01-06  Anantha Kesari H Y  <hyanantha@novell.com>

    * ext/standard/basic_functions.c:
      Added #ifdef HAVE_SYSLOG_H around syslog function in the whole file to
      avoid link failure.

    * netware/phplib.mak:
      Modified for Netware.

2003-01-06  Sara Golemon  <php@alphaweb.net>

    * ext/standard/filters.c:
      Added string.toupper and string.tolower filters and generalized non-op
      filter methods

2003-01-06  Frank M. Kromann  <frank@kromann.info>

    * ext/gd/libgd/gdft.c:
      Nuke warning, on Win32 build

    * ext/gd/gd_bundled.dsp:
      enable imageftbbox() and imagefttext() on WIn32

2003-01-06  Sara Golemon  <php@alphaweb.net>

    * ext/standard/user_filters.c
      main/php_streams.h
      main/streams.c:
      Expose stream_filters_hash so that it can be searched by
      stream_get_filters()

2003-01-06  Edin Kadribasic  <edink@proventum.net>

    * (PHP_4_3)
      NEWS:
      Mention gif read-only support on windows.

    * (PHP_4_3)
      ext/gd/gd_bundled.dsp:
      MFH: Added missing flags and .c files for gif read support on Windows.

    * ext/gd/gd_bundled.dsp:
      Complete gif readonly support addition by adding missing gd_gif_in.c
      file to the project.

    * ext/mcrypt/mcrypt.c:
      Comment out non ANSI C standard comliant code. Fixes win32 build.

    * ext/dba/dba.c:
      Fixed win32 build.

2003-01-06  Ilia Alshanetsky  <ilia@prohost.org>

    * (PHP_4_3)
      NEWS:
      Bug fixing news.

    * ext/gd/libgd/gd.h
      ext/gd/libgd/gdft.c:
      Fixed bug #21445.

2003-01-05  Sara Golemon  <php@alphaweb.net>

    * ext/standard/file.c
      ext/standard/user_filters.c:
      Fixes to stream_get_wrappers() and stream_get_filters() handle hash table
      layouts better, plus some picune whitespace fixes

2003-01-05  Georg Richter  <georg.richter@phpev.de>

    * ext/mysql/php_mysql.c:
      fixed bug #21435

2003-01-05  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * ext/gd/gd_bundled.dsp:
      Define HAVE_GD_GIF_READ.

2003-01-05  Zeev Suraski  <zeev@zend.com>

    * main/main.c:
      Remove unnnecessary initialization

    * sapi/cgi/cgi_main.c
      sapi/cli/php_cli.c:
      Initialize lineno using the new infrastructure

2003-01-05  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * main/.cvsignore
      main/config.w32.h
      main/config.w32.h.in
      win32/php4dll.dsp
      win32/php4dllts.dsp:
      Revert config.w32.h.in -> config.w32.h build step per discussion with Zeev.

2003-01-05  Zeev Suraski  <zeev@zend.com>

    * sapi/apache/php4apache.dsp:
      Make the .dsp use the php4build build directories

2003-01-05  Edin Kadribasic  <edink@proventum.net>

    * ext/xslt/xslt.dsp:
      MFB:
      Made xslt_set_encoding() available on windows (bug #20640).

    * (PHP_4_3)
      ext/xslt/xslt.dsp:
      Made xslt_set_encoding() available on windows (bug #20640).

    * (PHP_4_3)
      ext/standard/php_incomplete_class.h:
      Fixed ZTS build.

2003-01-05  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/string.c:
      Fixed a memory leak in setlocale() & localeconv().

2003-01-05  Sara Golemon  <php@alphaweb.net>

    * ext/standard/basic_functions.c
      ext/standard/basic_functions.h
      ext/standard/user_filters.c:
      Added stream_get_filters(); to list registered filters

2003-01-05  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/filestat.c:
      - Fix some of the netware crap

2003-01-04  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/filestat.c:
      - Change Warnings to Notices

2003-01-04  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/openssl/openssl.c:
      CS fixes.

2003-01-04  Marcus Boerger  <marcus.boerger@post.rwth-aachen.de>

    * (PHP_4_3)
      ext/standard/browscap.c
      ext/wddx/wddx.c:
      Fix ZTS-ZE2 (After Cygwin now for the rest)

    * ext/exif/tests/exif003.phpt
      ext/exif/tests/exif004.phpt:
      better to check for existance first

    * ext/dbx/dbx.c
      ext/imap/php_imap.c
      ext/standard/browscap.c
      ext/standard/incomplete_class.c
      ext/standard/php_incomplete_class.h
      ext/standard/var_unserializer.c
      ext/wddx/wddx.c:
      Fix ZTS-ZE2 build

2003-01-04  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * NEWS:
      Forgot to include these functions in the list

2003-01-04  Derick Rethans  <d.rethans@jdimedia.nl>

    * NEWS:
      - Fix typo

2003-01-04  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/iconv/iconv.c:
      Fixed cut'n'paste failure

    * NEWS:
      NEWS update for new iconv functions

    * ext/iconv/tests/iconv_mime_encode.phpt:
      Added test case for iconv_mime_encode()

2003-01-04  Derick Rethans  <d.rethans@jdimedia.nl>

    * (PHP_4_3)
      ext/pgsql/pgsql.c:
      - MFH: Fixed bug #21232 (Unresolved references to PQsetnonblocking). (Patch
      by
        Floyd <floyd@studiodust.com>)

    * ext/pgsql/pgsql.c:
      - Fixed bug #21232 (Unresolved references to PQsetnonblocking). (Patch by
        Floyd <floyd@studiodust.com>)

2003-01-03  Alex Waugh  <alex@alexwaugh.com>

    * acinclude.m4:
      Provide alternative for glibc brokenness test when cross compiling

2003-01-03  Derick Rethans  <d.rethans@jdimedia.nl>

    * sapi/apache/php_apache.c
      sapi/apache/php_apache.c:
      - Fix docrefs

    * sapi/apache/php_apache.c:
      - Fix typo (patch by Joseph Tate)

2003-01-03  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/iconv/tests/iconv_mime_decode.phpt:
      Added test case for iconv_mime_decode()

    * ext/iconv/tests/iconv_strpos.phpt
      ext/iconv/tests/iconv_strrpos.phpt:
      Added test cases for iconv_strpos() and iconv_strrpos()

    * ext/iconv/iconv.c:
      Fixed an iconv_strrpos() bug that the function doesn't return accurate
      position of last occurrence

2003-01-03  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/mcrypt/TODO:
      - Update todo

    * ext/mcrypt/config.m4
      ext/mcrypt/mcrypt.c
      ext/mcrypt/php_mcrypt.h:
      - Removed support for libmcrypt 2.2.x to allow cleaner code. Another reason
        to upgrade libmcrypt to a 2.5.x series as the older ones have too much
      bugs
        to be safely used with PHP.
      - Updated macro's, php_errors and parameter parsing.

2003-01-03  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/standard/file.c:
      Fixed a bug that would cause flock() to never set the 3rd argument.
      CS fixes & switched to new parameter parsing API.

    * (PHP_4_3)
      ext/standard/http_fopen_wrapper.c:
      MFH (fix for bug #21267 & memory leak fix on reidrects).

    * ext/standard/http_fopen_wrapper.c:
      Fixed a memory leak that occurs if the location specified by redirect
      header
      cannot be opened.

    * ext/standard/http_fopen_wrapper.c:
      Further fixes related to bug #21267.

2003-01-03  Anantha Kesari H Y  <hyanantha@novell.com>

    * sapi/apache2filter/php_apache.h
      sapi/apache2filter/sapi_apache2.c:
      Modifications for NetWare.

    * netware/phplib.imp
      netware/phplib.mak
      netware/sendmail.c
      netware/sendmail.h:
      Some existing files modified and a couple of files removed for NetWare.

    * win32/sendmail.c
      win32/sendmail.h:
      NetWare related changes/modifications.

2003-01-03  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/iconv/iconv.c:
      Added offset validity check for iconv_strpos()

2003-01-03  Anantha Kesari H Y  <hyanantha@novell.com>

    * ext/xml/xml.mak
      netware/geterrnoptr.c
      netware/sendmail_nw.h
      sapi/apache/libpre.c:
      New file added for NetWare.

    * ext/ftp/ftp.c
      ext/ldap/ldap.mak
      ext/ldap/ldap.mak
      ext/mysql/mysql.mak
      ext/mysql/mysql.mak
      ext/session/mod_files.c
      ext/session/session.c
      ext/standard/exec.c
      ext/standard/exec.c
      ext/standard/file.c
      ext/standard/filestat.c
      ext/standard/html.c
      ext/standard/syslog.c
      ext/xml/xml.mak
      netware/buildlib.bat
      netware/phplib.mak:
      Modified for NetWare.

    * main/config.nw.h
      main/internal_functions_nw.c
      main/php.h
      main/php_sprintf.c
      main/user_streams.c:
      A new file added and some old files modified for NetWare.

2003-01-03  Edin Kadribasic  <edink@proventum.net>

    * netware/ApacheCore.imp
      netware/BisonExtStandard.bat
      netware/BisonFlexZend.bat:
      Checking in files for Ananth Kesari <hyanantha@novell.com>

2003-01-03  Anantha Kesari H Y  <hyanantha@novell.com>

    * netware/ZendEngine2.mak
      netware/grp.h
      netware/libpq.imp
      netware/mktemp.c
      netware/param.h
      netware/php-nw.bat
      netware/php4apache.mak
      netware/php4apache2filter.mak
      netware/php4cli.mak
      netware/phplib.imp
      netware/phplib.mak
      netware/phptest.ncf
      netware/pipe.c
      netware/pipe.h
      netware/postgres_ext.h
      netware/pwd.c
      netware/pwd.h
      netware/start.c
      netware/sysexits.h
      netware/time_nw.c
      netware/time_nw.h
      netware/tsrm.mak
      netware/wfile.c
      netware/wfile.h
      netware/zend.mak:
      A few New files added and some old files modified for NetWare.

    * netware/libpq-fe.h
      netware/libpq-fs.h:
      New files added for NetWare.

    * netware/common.mif
      netware/sys/stat.h:
      File modified for NetWare.

2003-01-03  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/credits_sapi.h:
      - Update this one as well

    * ext/standard/credits_ext.h
      scripts/credits:
      - Remove double "Win32 COM" functions line

    * README.PARAMETER_PARSING_API:
      - Whitespace

    * (PHP_4_3)
      NEWS:
      Bugfixing news

2003-01-03  Sara Golemon  <php@alphaweb.net>

    * ext/standard/basic_functions.c
      ext/standard/file.c
      ext/standard/file.h:
      Added stream_get_wrappers()

2003-01-03  Moriyoshi Koizumi  <moriyoshi@at.wakwak.com>

    * ext/iconv/tests/iconv_strlen.phpt
      ext/iconv/tests/iconv_substr.phpt:
      Added test cases for iconv_strlen() and iconv_substr()

    * ext/iconv/iconv.c:
      Fixed iconv_mime_decode() so it would give more awareness to stateful
      codesets

    * ext/iconv/iconv.c:
      Fixed infinite loop of iconv_mime_encode() in case the specified line
      length is too short to contain a proper mime-encoded string

    * ext/iconv/iconv.c:
      Give mo' shift-sequence awareness to iconv_mime_encode

    * ext/iconv/iconv.c:
      More shift-sequence awareness for iconv_substr()

    * ext/iconv/iconv.c:
      Added missing casting operators

    * ext/iconv/tests/eucjp2iso2022jp.phpt:
      MFB

    * (PHP_4_3)
      ext/iconv/tests/eucjp2iso2022jp.phpt:
      Updated the test so it reflects the recent change on iconv.c

    * ext/iconv/iconv.c:
      MFB: fixed shift-out sequence unawareness issue

    * (PHP_4_3)
      ext/iconv/iconv.c:
      Fixed shift-out sequence unawareness issue

    * ext/standard/array.c:
      Fixed small leaks in array_map() in case the first parameter is NULL like
      array_map(NULL, array(...));

2003-01-03  Harald Radi  <harald.radi+coding.php@nme.at>

    * pear/scripts/pear.bat:
      fixing typo

2003-01-03  Jani Taskinen  <sniper@iki.fi>

    * NEWS:
      - Removed entries that are going to 4.3.1
      - Grouped the entries a bit.

    * (PHP_4_3)
      NEWS:
      Group these entries a bit to make NEWS easier to read.

2003-01-02  Stig Bakken  <ssb@fast.no>

    * pear/PEAR/Config.php:
      - allways fall back to PHP_SYSCONFDIR

2003-01-02  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/openssl/openssl.c:
      Fixed a small memory leak when a NULL variable is passed to
      openssl_csr_sign() as the first argument.

    * (PHP_4_3)
      NEWS:
      Bug fixing news.

    * ext/standard/html.c:
      Fixed bug #21338 (crash inside html_entity_decode() when "" is passed).
      Added test case for the bug.

    * ext/standard/tests/strings/bug21338.phpt:
      
      Fixed bug #21338 (crash inside html_entity_decode() when "" is passed).
      Added test case for the bug.

    * acinclude.m4
      configure.in:
      Raise required OpenSSL version to 0.9.6.

2003-01-02  Derick Rethans  <d.rethans@jdimedia.nl>

    * main/SAPI.h:
      - Fixed bug #21169: Compile Failure, and lots of warnings on UnixWare

    * (PHP_4_3)
      main/SAPI.h:
      -** empty log message ***

2003-01-02  Zeev Suraski  <zeev@zend.com>

    * sapi/apache/php4apache.dsp:
      Fix .dsp

2003-01-02  Derick Rethans  <d.rethans@jdimedia.nl>

    * main/php_streams.h:
      - Fix warnings on UnixWare

    * (PHP_4_3)
      Makefile.global:
      - MFH: Fix "make test" when CC was set to something with a parameter

    * Makefile.global:
      - Fix "make test" when CC was set to something with a parameter

2003-01-01  Frank M. Kromann  <frank@kromann.info>

    * ext/standard/base64.c
      ext/standard/base64.h:
      Allow base64 functions to be called from an extension buils as .so/.dll
      (iconv)

2003-01-01  Zeev Suraski  <zeev@zend.com>

    * ext/standard/browscap.c
      ext/standard/incomplete_class.c:
      build fixes

2003-01-01  Derick Rethans  <d.rethans@jdimedia.nl>

    * (PHP_4_3)
      tests/run-test/test005.phpt
      tests/run-test/test008.phpt:
      - MFH: Fix tests if Zend Optimizer is loaded

    * tests/run-test/test005.phpt
      tests/run-test/test008.phpt:
      - Fix tests if Zend Optimizer is loaded

2003-01-01  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * win32/php4dll.dsp
      win32/php4dllts.dsp:
      Add filter.c, user_filters.c. Group stream related sources.

    * ext/standard/filters.c
      ext/standard/user_filters.c:
      Fix warnings.

2003-01-01  Wez Furlong  <wez.php@thebrainroom.net>

    * ext/standard/filters.c:
      Tidy up

    * ext/standard/basic_functions.c
      ext/standard/config.m4
      ext/standard/filters.c
      ext/standard/php_standard.h
      ext/standard/php_string.h
      ext/standard/string.c
      ext/standard/user_filters.c
      ext/standard/tests/file/userfilters.phpt:
      Move rot13 filter into a new filters.c source file.
      Tidy up some other filter related code.
      

    * acinclude.m4
      configure.in
      main/streams.c:
      Workaround for glibc 2.2.9x and later "a+" bug that does not seek to EOF
      for
      files fopen()ed with that mode.

    * (PHP_4_3)
      acinclude.m4
      configure.in
      main/streams.c:
      Workaround a bug in glibc 2.2.9x and later that causes it not to seek to
      EOF
      for stdio streams opened with a mode of "a+".