summaryrefslogtreecommitdiff
path: root/ChangeLog
blob: e4512dbcdd61370b4b2c8291b1d14cc2a391636e (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
2002-03-05  Markus Fischer  <mfischer@guru.josefine.at>

    * NEWS: - Added recent changes done in ext/posix

2002-03-05  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/session/mod_mm.c: Fixed crash with mm save handler

    * ext/session/session.c: Fix bug #15322 and fix a little memory leak

2002-03-05  Zeev Suraski  <zeev@zend.com>

    * ext/session/session.c: MFH

    * ext/session/session.c:
    Make $_SESSION and $HTTP_SESSION_VARS links to each other

2002-03-05  Stig Bakken  <ssb@fast.no>

    * pear/tests/pear_config.phpt: * PEAR_Config test complete

2002-03-05  James Cox  <james@awpimajes.com>

    * win32/install.txt: adding installation comments for 4.1.2

2002-03-05  Marcus Börger  <marcus.boerger@post.rwth-aachen.de>

    * ext/exif/exif.c: -fixes
    -changed internal data structures

2002-03-05  Stig Bakken  <ssb@fast.no>

    * pear/tests/merge.input
      pear/tests/pear_config.phpt
      pear/tests/toonew.conf
      pear/tests/user2.input: * update PEAR_Config test

    * pear/PEAR/Config.php: * fix singleton() so it actually works
    * insert file format version in written files
    * add getSetValues() method for listing the valid values for a set value

2002-03-05  Dan Kalowsky  <dank@deadmime.org>

    * ext/odbc/php_odbc.c:
    Breaking BC, but making odbc_fetch_into behavior more consistent

2002-03-05  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/posix/php_posix.h
      ext/posix/posix.c:
    - Introduced posix_errno() (get error number from last error message) and
      posix_strerror() (convert error number into error string).

    - Do not output any error message if any of the function fails with FALSE
      return value. The proper way now is to call posix_errno() and
      posix_strerror() after encountering an error condition.

    - Function not support on a system no longer issue a 'not available' error
      but simply don't exist so we can safely use 'function_exists'.

    - Fixed protos.

    - Use new parameter parsing API.

    - posix_uname() may be aware of 'domainname' (GNU extension)

    - posix_getgrnam(), posix_getgrgid(): the returned information does no
      longer contains mixture of string and numbered keys (hash / array)
      but contains key 'member' with an array of all members in a list
      (or an empty array). This breaks BC but is the right thing IMHO.

2002-03-05  Stig Bakken  <ssb@fast.no>

    * pear/PEAR.php:
    * fix PEAR::setErrorHandling() settings so they apply when using raiseError()

2002-03-05  Derick Rethans  <d.rethans@jdimedia.nl>

    * pear/DB/tests/driver/15quote.phpt
      pear/DB/tests/driver/02fetch.phpt
      pear/DB/tests/driver/03simplequery.phpt
      pear/DB/tests/driver/04numcols.phpt
      pear/DB/tests/driver/05sequences.phpt
      pear/DB/tests/driver/06prepexec.phpt
      pear/DB/tests/driver/08affectedrows.phpt
      pear/DB/tests/driver/09numrows.phpt
      pear/DB/tests/driver/10errormap.phpt
      pear/DB/tests/driver/13limit.phpt
      pear/DB/tests/driver/14fetchmode_object.phpt
      pear/DB/tests/driver/01connect.phpt
      pear/DB/tests/db_factory.phpt
      pear/DB/tests/db_ismanip.phpt
      pear/DB/tests/db_parsedsn.phpt
      ext/xml/tests/001.phpt
      ext/xml/tests/002.phpt
      ext/xml/tests/003.phpt
      ext/xml/tests/004.phpt
      pear/DB/tests/db_error.phpt
      tests/basic/002.phpt: - More test fixes

    * ext/standard/tests/array/array_search.phpt
      ext/standard/tests/file/001.phpt
      ext/standard/tests/general_functions/004.phpt
      ext/standard/tests/math/abs.phpt
      ext/standard/tests/math/pow.phpt
      ext/standard/tests/math/round.phpt
      ext/standard/tests/strings/trim.phpt
      ext/standard/tests/strings/wordwrap.phpt
      ext/standard/tests/array/001.phpt
      ext/standard/tests/aggregation/aggregate.phpt
      ext/standard/tests/aggregation/aggregate_methods.phpt
      ext/standard/tests/aggregation/aggregate_methods_by_list.phpt
      ext/standard/tests/aggregation/aggregate_methods_by_regexp.phpt
      ext/standard/tests/aggregation/aggregate_properties.phpt
      ext/standard/tests/aggregation/aggregate_properties_by_list.phpt
      ext/standard/tests/aggregation/aggregate_properties_by_regexp.phpt
      ext/standard/tests/aggregation/aggregation_info.phpt
      ext/standard/tests/aggregation/deaggregate.phpt:
    - Fix tests to work with CLI

    * ext/mcrypt/tests/001.phpt: - Fix mcrypt tests

2002-03-05  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * README.TESTING: Fixed wrong description about CLI sapi usage.
    Currently "make test" is running test script as

    ./sapi/cli/php -c php.ini-dist run-tests.php

    "make test" does not work... I'm supposing this
    will be changed to use CGI sapi for now.

    * README.TESTING: Added README.TESTING

2002-03-05  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * win32/pws-php4cgi.reg
      win32/install.txt: s/php.exe/php-cgi.exe/.

2002-03-05  Dan Kalowsky  <dank@deadmime.org>

    * ext/odbc/birdstep.c: Added a comment for future reference

2002-03-05  Jason Greene  <jason@inetgurus.net>

    * ext/sockets/sockets.c: Style Improvement

2002-03-05  Stig Bakken  <ssb@fast.no>

    * pear/PEAR/Config.php
      pear/tests/pear_config.phpt:
    * fixed a couple of bugs in PEAR_Config revealed by test

2002-03-05  Frank M. Kromann  <frank@frontbase.com>

    * ext/dbase/dbase.c: Killing compiler warning

    * ext/dbase/dbf_rec.c: Making dbase compule under WIn32

    * main/php_ini.c: Killing compiler warning on Win32

2002-03-04  Dan Kalowsky  <dank@deadmime.org>

    * ext/iconv/config.m4
      ext/iconv/php_iconv.h:
    Fix for Bug 14423.  Enables FreeBSD to use iconv functionality.

2002-03-04  Marcus Börger  <marcus.boerger@post.rwth-aachen.de>

    * ext/exif/test.txt: - also test TIFF support in GetImageSize

    * ext/exif/exif.c: - Read IsColor for TIFF

2002-03-04  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * win32/php4.dsp
      win32/php4ts.dsp: Rename Win32 SAPI/CGI binary to php-cgi.exe.

2002-03-04  Jon Parise  <jon@csh.rit.edu>

    * main/php_ticks.c:
    Silence a warning under Solaris 8 (WorkShop Compilers 5.0 98/12/15 C 5.0).

2002-03-04  Derick Rethans  <d.rethans@jdimedia.nl>

    * NEWS:
    - Update NEWS with changes by Shane for "fix force redirect crash under
      multithreaded compile". (This is only in the published Windows binaries)

    * php.ini-dist: - MFH for:
      add stuff here also.

    * sapi/cgi/cgi_main.c: - MFH for:
      add comment for IIS users

    * php.ini-recommended: - MFH for:
      document force-redirect in php.ini

    * sapi/cgi/cgi_main.c: - MFH for:
      This is much better.  With FORCE_CGI_REDIRECT turned on by default for compilation,
      we can now define this in the ini file.  So it can be turned on for apache, turned
      off for IIS which does not have a redirect issue.  Alternately, a different 'REDIRECT_STATUS'
      environment var can be defined in case some web server out there needs it.

      new ini vars
      cgi.force_redirect 0|1
      cgi.redirect_status_env ENV_VAR_NAME

    * sapi/cgi/cgi_main.c: - MFH for:
      fix force redirect crash under multithreaded compile

      should be discused: fix redirect detection to only work with apache or netscape,
      where we know they set an environment variable regarding redirect.  IIS has
      no security issue here.  Don't know about other windows web servers.

2002-03-04  Sascha Schumann  <sascha@schumann.cx>

    * ext/standard/info.c: Add apparently missing include

2002-03-04  Derick Rethans  <d.rethans@jdimedia.nl>

    * main/config.w32.h
      main/php.h: - MFH for: turn on force redirect for windows

    * main/main.c: - Some more speed (and more consistency)

2002-03-04  Sascha Schumann  <sascha@schumann.cx>

    * main/php_ini.c
      main/php_main.h
      main/main.c
      ext/standard/info.c:
    Supply php_html_puts which escapes a whole string.. now fully works in ZTS
    mode, too.

2002-03-04  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * ext/standard/image.c: Silence warning.

2002-03-04  Sascha Schumann  <sascha@schumann.cx>

    * ext/standard/info.c: revert last commit, puts does more through putc.

    * ext/standard/info.c:
    Use PHPWRITE to output data.  Because this just outputs diagnostic
    information, a few spaces won't hurt (and multiple ones are rendered
    as one by browsers anyway).  Micro-benchmarks which use phpinfo()
    as a mean to generate output will yield more through-put now
    (35 req/s vs. 83 req/s in tux).

2002-03-04  Derick Rethans  <d.rethans@jdimedia.nl>

    * sapi/apache/config.m4:
    - Fix for bug #15572 (Patch by Ralf Nyrén <ralf.nyren@educ.umu.se>)

2002-03-04  Marcus Börger  <marcus.boerger@post.rwth-aachen.de>

    * EXTENSIONS:
    -expose the fact i am working on exif as discussed with Rasmus

    * ext/standard/image.c: - TIFF support for GetImageSize
     TIFF support for GetImageSize 

    * ext/exif/exif.c: - disabled debug information
    - added missing width/height from primary ifd for TIFF

2002-03-04  James Cox  <james@awpimajes.com>

    * ext/odbc/php_birdstep.h
      ext/odbc/php_birstep.h: typos suck.

2002-03-04  Jason Greene  <jason@inetgurus.net>

    * ext/sockets/sockets.c: Style mismatch: Jon's catch

2002-03-04  Stanislav Malyshev  <stas@zend.com>

    * ext/standard/datetime.c: cygwin fix

2002-03-04  Jon Parise  <jon@csh.rit.edu>

    * ext/session/session.c
      main/output.c:
    Silence warning under Solaris 8 (WorkShop Compilers 5.0 98/12/15 C 5.0).

2002-03-04  Derick Rethans  <d.rethans@jdimedia.nl>

    * makerpm: - Fix a path and remove --with-imap

2002-03-04  Stig Bakken  <ssb@fast.no>

    * pear/PEAR/Config.php: PEAR_Config rewrite:

    * Now supports (in theory) an arbitrary number of
      config "layers" (different sets of configuration data with a defined
      priority).
    * Specify the type of config values so different frontends can make
      user-friendly configuration interfaces.  Valid types are currently
      "string", "integer", "file", "directory", "set" and "password".  The
      set type lets you specify a limited set of values that the config
      values must be selected from.  Password values are stored
      base64-encoded.
    * Added phpdoc comments and some docs for config values.
    * Added singleton method.

2002-03-04  Marcus Börger  <marcus.boerger@post.rwth-aachen.de>

    * ext/exif/exif.c:
    -addition to last change: php_image.h must be included now

2002-03-04  James Cox  <james@awpimajes.com>

    * ext/odbc/php_velocis.h
      ext/odbc/setup.stub
      ext/odbc/velocis.c
      main/build-defs.h.in
      ext/odbc/birdstep.c
      ext/odbc/config.m4
      ext/odbc/php_birstep.h
      ext/odbc/php_odbc.c
      ext/odbc/php_odbc.h:
    Changing the Velocis extension to now be called Birdstep, due to a product/company change.
    added aliases for Velocis to the birdstep functions.

2002-03-04  Sascha Schumann  <sascha@schumann.cx>

    * ext/standard/url_scanner_ex.c
      ext/standard/url_scanner_ex.re: Restore use of inline

    * build/build2.mk
      build/buildcheck.sh: Remove note, suppress warning

    * sapi/tux/php_tux.c: Reduce operations in the ub_write loop.

    * sapi/tux/php_tux.c:
    Free status line, initialize number_vec, correctly account for
    the number of bytes in the document, avoid strcpy/strlen.

2002-03-04  Rasmus Lerdorf  <rasmus@php.net>

    * ext/standard/php_image.h
      ext/exif/exif.c:
    Let getimagesize() and read_exif_data() share the same constants to
    promote a little bit of code reuse here on two very similar problems.

2002-03-04  Marcus Börger  <marcus.boerger@post.rwth-aachen.de>

    * ext/exif/test.php
      ext/exif/test.txt: -Updated test.txt and provided test.php

    * ext/exif/exif.c: -Added TIFF support
    -Changed parameters after checking bugdatabase and discussion with
        Rasmus: 1st=Filename, 2nd=NeededSections

2002-03-04  Jason Greene  <jason@inetgurus.net>

    * ext/sockets/sockets.c:
    Patch 1 of 3 (2 in 3 still in progress) of sockets rework
    Abstracted string -> ipv4 value conversion which unifies all functions
    Standardized Host Lookups
    Fixed Broken host error values
    Fixed error detection in sendmsg
    Added some safety struct zeroing
    Modified bind to consitentlyy use sockaddr_storage(not just for AF_UNIX)

2002-03-03  Zak Greant  <zak@mysql.com>

    * build/buildcheck.sh:
    Added message regarding expected error messages for ./buildconf

2002-03-03  James E. Flemer  <jflemer@acm.jhu.edu>

    * main/safe_mode.c:
    Added case for root directory when mode is not
    CHECKUID_ALLOW_ONLY_DIR.

    * main/safe_mode.c:
    Added case for root directory when mode is
    CHECKUID_ALLOW_ONLY_DIR.

    * ext/standard/dir.c: Added safe_mode checks on path.

2002-03-03  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB/MAINTAINERS: Updated maintainers

2002-03-03  Derick Rethans  <d.rethans@jdimedia.nl>

    * NEWS: - Tidy up NEWS a little bit

2002-03-03  Alex Waugh  <alex@alexwaugh.com>

    * sapi/webjames/README
      sapi/webjames/config.m4: Updated build instructions

2002-03-02  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/pgsql/pgsql.c:
    - Make the 2nd parameter to pgsql_fetch_* support NULL in case 3 parameters
      are supplied, but you do not want to provide a row number yourself.
    - Make the 2nd parameter to pgsql_fetch_* support NULL in case 3
      parameters are supplied, but you do not want to provide a row number
      yourself. 

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

    * ext/standard/math.c: php has no 'double', only 'float'

    * ext/mcve/mcve.c
      ext/mcve/php_mcve.h: tab/space mixture cleand up,
    editor config comments added,
    minor proto fixes

    * ext/standard/aggregation.c
      main/output.c: typo fix

2002-03-02  Zeev Suraski  <zeev@zend.com>

    * ext/session/session.c: MFH - crash bug fix

    * ext/session/session.c: Fix another crash bug

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

    * ext/ctype/config.m4: enable ctype functions by default

2002-03-02  Marcus Börger  <marcus.boerger@post.rwth-aachen.de>

    * ext/exif/exif.c:
    Wrong brackets by rasmus...but sorry the fault was mine because i missed them...

    i also decided to call the first working version 1.0a

    by the way: currently i am working on tiff files and it looks like it may work

2002-03-02  Zeev Suraski  <zeev@zend.com>

    * main/php_version.h
      configure.in: Bump those up too in case we ever release

    * configure.in
      main/php_version.h: Fix version number

    * ext/session/session.c: MFH - crash bug fix

    * ext/session/session.c: Fix a crash bug in the session module

2002-03-02  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/string.c: - Fix warning message for join().

    * ext/mcve/CREDITS
      ext/tokenizer/CREDITS
      ext/dbx/CREDITS: - Fix CREDITS files

    * ext/gd/gd.c:
    - Make GD functions only available if they really exist (Patch by
      matslin@orakel.ntnu.no)

2002-03-02  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/mbstring/tests/001.phpt
      ext/mbstring/tests/002.inc
      ext/mbstring/tests/002.phpt
      ext/mbstring/tests/003.inc
      ext/mbstring/tests/003.phpt
      ext/mbstring/tests/004.inc
      ext/mbstring/tests/004.phpt
      ext/mbstring/tests/005.inc
      ext/mbstring/tests/005.phpt
      ext/mbstring/tests/006.inc
      ext/mbstring/tests/006.phpt
      ext/mbstring/tests/007.inc
      ext/mbstring/tests/007.phpt
      ext/mbstring/tests/008.inc
      ext/mbstring/tests/008.phpt
      ext/mbstring/tests/009.inc
      ext/mbstring/tests/009.phpt
      ext/mbstring/tests/010.inc
      ext/mbstring/tests/010.phpt
      ext/mbstring/tests/011.inc
      ext/mbstring/tests/011.phpt
      ext/mbstring/tests/012.inc
      ext/mbstring/tests/012.phpt
      ext/mbstring/tests/013.inc
      ext/mbstring/tests/013.phpt
      ext/mbstring/tests/014.inc
      ext/mbstring/tests/014.phpt
      ext/mbstring/tests/015.inc
      ext/mbstring/tests/015.phpt
      ext/mbstring/tests/016.inc
      ext/mbstring/tests/016.phpt
      ext/mbstring/tests/017.inc
      ext/mbstring/tests/017.phpt
      ext/mbstring/tests/018.inc
      ext/mbstring/tests/018.phpt
      ext/mbstring/tests/019.inc
      ext/mbstring/tests/019.phpt
      ext/mbstring/tests/common.php
      ext/mbstring/tests/skipif.inc: Add mbstring tests

    * build/rules.mk: Use php.ini-dist as default config file for testing.

2002-03-02  Rasmus Lerdorf  <rasmus@php.net>

    * ext/exif/exif.c: Fix a couple of warnings

2002-03-02  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/iconv/iconv.c:
    Improved iconv usage with libc's iconv. No overrun. More efficient memory
    allocation.
    Hopefully, all bugs reported for iconv will be resolved when users are using
    libc iconv.

    * ext/iconv/tests/eucjp2iso2022jp.inc
      ext/iconv/tests/eucjp2iso2022jp.phpt
      ext/iconv/tests/eucjp2sjis.inc
      ext/iconv/tests/eucjp2sjis.phpt
      ext/iconv/tests/eucjp2utf8.inc
      ext/iconv/tests/eucjp2utf8.phpt
      ext/iconv/tests/002.phpt: Add more tests for iconv

2002-03-02  Stig Bakken  <ssb@fast.no>

    * pear/tests/pear_autoloader.phpt
      pear/tests/pear_config.phpt
      pear/tests/pear_error.phpt
      pear/tests/pear_error2.phpt
      pear/tests/pear_error3.phpt
      pear/tests/pear_error4.phpt
      pear/tests/pear_registry.phpt: * more cli test fixes

    * pear/DB/tests/db_error.phpt
      pear/DB/tests/db_error2.phpt
      pear/DB/tests/db_parsedsn.phpt
      pear/DB/tests/mysql/02fetch.phpt
      pear/DB/tests/mysql/03simplequery.phpt
      pear/DB/tests/mysql/04numcols.phpt
      pear/DB/tests/mysql/05sequences.phpt
      pear/DB/tests/mysql/06prepexec.phpt
      pear/DB/tests/mysql/09numrows.phpt
      pear/DB/tests/mysql/10errormap.phpt
      pear/DB/tests/mysql/12tableinfo.phpt
      pear/DB/tests/mysql/13limit.phpt
      pear/DB/tests/mysql/14fetchmode_object.phpt
      pear/tests/pear_config.phpt
      pear/tests/pear_error.phpt: * updated tests to work with cli

    * pear/tests/pear1.phpt: fix test

    * run-tests.php: * work with sapi/cli

2002-03-01  Rasmus Lerdorf  <rasmus@php.net>

    * ext/odbc/config.m4: In case we do a 4.1.3, add this trivial fix

2002-03-01  Edin Kadribasic  <edink@proventum.net>

    * main/main.c:
    Added PHP_SAPI constant which contains the name of running SAPI.

2002-03-01  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/url_scanner_ex.re
      ext/standard/url_scanner_ex.c:
    - Fix for Sun WorkShop 6 update 2 compiler (Bug #15812)

2002-03-01  Andrei Zmievski  <andrei@ispi.net>

    * TODO: *** empty log message ***

2002-03-01  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/interbase/interbase.c:
    - Add support for returning NULL values from Interbase resultsets (Patch by
      Daniela Mariaschi <mariaschi@libero.it>)

2002-03-01  Jani Taskinen  <sniper@iki.fi>

    * NEWS: - We haven't got the branch yet..
    - Some typo fixes and correct grammar.

2002-03-01  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/msession/msession.c: Fix compiler warnings and header file path.

2002-03-01  Zeev Suraski  <zeev@zend.com>

    * ext/standard/array.c: Fix php_splice() to work with large values

2002-03-01  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/pgsql/README: Update doc

    * TODO: Added todo item for Java extention documentation.

    * TODO-4.2.txt
      TODO: Merge TODO-4.2.txt into TODO.

2002-03-01  Stig Bakken  <ssb@fast.no>

    * pear/PEAR/Command.php
      pear/PEAR/Command/Common.php
      pear/PEAR/Command/Install.php:
    * code for install/uninstall/upgrade complete, not yet tested

2002-03-01  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * main/output.c: Do explicit test againt to FAILURE.

2002-03-01  Stig Bakken  <ssb@fast.no>

    * pear/PEAR/Packager.php:
    * output a reminder to set CVS tags after packaging

    * build/rules.mk: * use cli sapi to run tests

2002-03-01  Shane Caraveo  <shane@caraveo.com>

    * php.ini-dist: add stuff here also.

    * sapi/cgi/cgi_main.c: add comment for IIS users
    fix some whitespace

2002-03-01  Marcus Börger  <marcus.boerger@post.rwth-aachen.de>

    * ext/exif/php_exif.h
      ext/exif/test.txt
      ext/exif/.cvsignore
      ext/exif/exif.c:
    +Support for Photographer/Editor Copyright as associative array as this is a new feature the change (optionally being an array) has to be mentioned in documentation.
    +New function exif_headername can be used to read the internal Tag namelist (was mainly created for debugging purpose but maybe somone writes code to create/update exif headers here).
    +An internal version number is present.
    +A testpage is supplied test.txt describes how the test works.
    +The oldfunction read_exif_data has got an alias exif_read_data

    As the old version of this module is very buggy i decided to implement the testpage (test.txt) and to create the alias. The test script only works with the alias as the old version does not pass tests. By the way it seems a good way to prepend 'exif_' to all functions in the module.

2002-03-01  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/snmp/snmp.c: Fix compiler warnings

    * ext/standard/var.c
      ext/zlib/zlib.c
      main/main.c
      main/output.c
      main/php_output.h
      ext/standard/basic_functions.c
      ext/session/session.c:
    Added ob_get_status() to get array of buffers and it's status.
    (DO NOT document this function yet)

    Fixed crash bug with ob_end_*() function. ob_end_*() will not delete
    buffers that may not be deleted.

    php_start_ob_buffer() and php_ob_set_internal_handler() takes parameter for
    if the buffer created may be deleted or not.

    Added 3rd parameter "bool erase" to ob_start(). If FALSE, buffer may not be
    deleted until script finshes.

    Changed ob_*() function that have void return type to bool. All ob_*()
    functions return TRUE for success, FALSE for failure.


2002-03-01  Shane Caraveo  <shane@caraveo.com>

    * php.ini-recommended: document force-redirect in php.ini

    * sapi/cgi/cgi_main.c:
    This is much better.  With FORCE_CGI_REDIRECT turned on by default for compilation,
    we can now define this in the ini file.  So it can be turned on for apache, turned
    off for IIS which does not have a redirect issue.  Alternately, a different 'REDIRECT_STATUS'
    environment var can be defined in case some web server out there needs it.

    new ini vars
    cgi.force_redirect 0|1
    cgi.redirect_status_env ENV_VAR_NAME

    * sapi/cgi/cgi_main.c:
    fix force redirect crash under multithreaded compile

    should be discused: fix redirect detection to only work with apache or netscape,
    where we know they set an environment variable regarding redirect.  IIS has
    no security issue here.  Don't know about other windows web servers.

    * main/config.w32.h
      main/php.h: turn on force redirect for windows

2002-02-28  Jani Taskinen  <sniper@iki.fi>

    * ext/crack/config.m4: - Fixed a typo. (caught by jtate@php.net)

2002-02-28  Rasmus Lerdorf  <rasmus@php.net>

    * ext/gd/gd.c: Change fatal errors to warnings - fix bug #15797

2002-02-28  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/basic_functions.c
      ext/standard/var.c: - Make it a boolean

2002-02-28  Brad House  <brad@mainstreetsoftworks.com>

    * ext/mcve/mcve.c: Fix proto for mcve_initconn

2002-02-28  Edin Kadribasic  <edink@proventum.net>

    * NEWS: Inserted a note about CGI binary name change.

2002-02-28  Marc Boeren  <M.Boeren@guidance.nl>

    * ext/dbx/howto_extend_dbx.html: Updating docs (Mc)

2002-02-28  Marcus Börger  <marcus.boerger@post.rwth-aachen.de>

    * ext/exif/exif.c:
    Changed file to match CODING_STANDARDS except function names that match jhead.c project. I think it is acceptable using naming conventions of other projects when borrowing code.

2002-02-28  Edin Kadribasic  <edink@proventum.net>

    * main/php_ini.c:
    Removed CWD from php_ini_search_path when using CLI SAPI.

2002-02-28  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/sysvshm/sysvshm.c
      sapi/aolserver/aolserver.c
      sapi/apache2filter/php_functions.c
      ext/mcrypt/mcrypt.c
      ext/mhash/mhash.c: Use {NULL, NULL, NULL} to terminate function entry.

2002-02-28  Edin Kadribasic  <edink@proventum.net>

    * sapi/cgi/config.m4: Default name of CGI binary changed to php-cgi.

2002-02-28  Marc Boeren  <M.Boeren@guidance.nl>

    * NEWS: Added entry that I forgot when comitting the code (Mc)

2002-02-28  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * win32/imap_sendmail.c
      scripts/conv_z_macros
      sapi/apache2filter/php_apache.h
      sapi/apache2filter/php_functions.c
      sapi/isapi/php4isapi.c
      sapi/apache/mod_php4.h
      sapi/apache/php_apache.c
      sapi/apache2filter/apache_config.c
      pear/XML/Parser.php
      pear/PEAR/Command/Install.php
      pear/Schedule/At.php
      pear/PEAR/Command/Common.php
      pear/PEAR/Dependency.php
      pear/PEAR/Installer.php
      pear/PEAR/Packager.php
      pear/PEAR/Registry.php
      pear/PEAR/Remote.php
      pear/PEAR/Uploader.php
      pear/Net/Dig.php
      pear/Net/SMTP.php
      pear/PEAR/Command.php
      pear/PEAR/CommandResponse.php
      pear/PEAR/Common.php
      pear/PEAR/Config.php
      pear/Mail/mail.php
      pear/Mail/sendmail.php
      pear/Mail/smtp.php
      pear/Net/Curl.php
      pear/File/SearchReplace.php
      pear/HTML/Common.php
      pear/HTML/IT.php
      pear/HTML/ITX.php
      pear/HTML/IT_Error.php
      pear/HTML/Menu_Browser.php
      pear/HTML/Page.php
      pear/HTML/Processor.php
      pear/HTML/Select.php
      pear/Experimental/Image/gbutton.php
      pear/Experimental/Image/gtext.php
      pear/File/Find.php
      pear/File/Passwd.php
      pear/DB/odbc.php
      pear/DB/storage.php
      pear/DB/sybase.php
      pear/Date/Human.php
      pear/Experimental/Image/color_helper.php
      pear/DB/msql.php
      pear/DB/mssql.php
      pear/DB/mysql.php
      pear/DB/oci8.php
      pear/DB/ifx.php
      pear/DB/dbase.php
      pear/DB/fbsql.php
      pear/DB/ibase.php
      pear/DB/common.php
      pear/Console/Getopt.php
      pear/Archive/Tar.php
      pear/CMD.php
      pear/HTTP.php
      pear/Mail.php
      pear/PEAR.php
      pear/System.php
      main/php_open_temporary_file.h
      main/php_output.h
      main/php_reentrancy.h
      main/php_sprintf.c
      main/php_streams.h
      main/php_ticks.c
      main/php_ticks.h
      main/reentrancy.c
      main/safe_mode.c
      main/snprintf.h
      main/streams.c
      main/build-defs.h.in
      main/fopen_wrappers.h
      main/network.c
      main/php_content_types.c
      main/php_globals.h
      main/php_logos.c
      main/php_network.h
      main/php_open_temporary_file.c
      ext/zlib/zlib_fopen_wrapper.c
      main/SAPI.h
      ext/xslt/xslt.c
      ext/yaz/php_yaz.c
      ext/yaz/php_yaz.h
      ext/zip/php_zip.h
      ext/zip/zip.c
      ext/xslt/php_xslt.h
      ext/xslt/sablot.c
      ext/xmlrpc/xmlrpc-epi-php.c
      ext/xslt/php_sablot.h
      ext/xmlrpc/php_xmlrpc.h
      ext/wddx/wddx.c
      ext/xml/xml.c
      ext/w32api/test_dll/test_dll.c
      ext/wddx/php_wddx.h
      ext/w32api/examples/uptime.php
      ext/w32api/test_dll/dll_test.h
      ext/w32api/w32api.c
      ext/w32api/php_w32api.h
      ext/sysvshm/sysvshm.c
      ext/tokenizer/php_tokenizer.h
      ext/tokenizer/tokenizer.c
      ext/vpopmail/php_vpopmail.c
      ext/sysvsem/sysvsem.c
      ext/sysvshm/php_sysvshm.h
      ext/sybase_ct/php_sybase_ct.h
      ext/sysvsem/php_sysvsem.h
      ext/standard/url_scanner_ex.h
      ext/standard/url_scanner_ex.re
      ext/standard/versioning.c
      ext/sybase/php_sybase_db.h
      ext/standard/reg.c
      ext/standard/reg.h
      ext/standard/scanf.c
      ext/standard/scanf.h
      ext/standard/syslog.c
      ext/standard/type.c
      ext/standard/uniqid.c
      ext/standard/uniqid.h
      ext/standard/url.c
      ext/standard/url.h
      ext/standard/url_scanner_ex.c
      ext/standard/php_metaphone.h
      ext/standard/php_parsedate.h
      ext/standard/php_rand.h
      ext/standard/php_smart_str.h
      ext/standard/php_smart_str_public.h
      ext/standard/php_standard.h
      ext/standard/php_string.h
      ext/standard/php_type.h
      ext/standard/php_var.h
      ext/standard/php_versioning.h
      ext/standard/quot_print.c
      ext/standard/quot_print.h
      ext/standard/rand.c
      ext/standard/php_image.h
      ext/standard/php_iptc.h
      ext/standard/php_lcg.h
      ext/standard/php_link.h
      ext/standard/php_mail.h
      ext/standard/php_math.h
      ext/standard/info.h
      ext/standard/iptc.c
      ext/standard/lcg.c
      ext/standard/link.c
      ext/standard/mail.c
      ext/standard/math.c
      ext/standard/md5.c
      ext/standard/md5.h
      ext/standard/metaphone.c
      ext/standard/microtime.c
      ext/standard/microtime.h
      ext/standard/pack.c
      ext/standard/pack.h
      ext/standard/pageinfo.c
      ext/standard/pageinfo.h
      ext/standard/php_assert.h
      ext/standard/php_browscap.h
      ext/standard/php_crypt.h
      ext/standard/php_dir.h
      ext/standard/php_ext_syslog.h
      ext/standard/php_fopen_wrapper.c
      ext/standard/php_fopen_wrappers.h
      ext/standard/php_ftok.h
      ext/standard/file.h
      ext/standard/filestat.c
      ext/standard/flock_compat.c
      ext/standard/flock_compat.h
      ext/standard/formatted_print.c
      ext/standard/fsock.h
      ext/standard/ftok.c
      ext/standard/ftp_fopen_wrapper.c
      ext/standard/head.c
      ext/standard/head.h
      ext/standard/html.c
      ext/standard/html.h
      ext/standard/http_fopen_wrapper.c
      ext/standard/image.c
      ext/standard/info.c
      ext/standard/aggregation.h
      ext/standard/assert.c
      ext/standard/base64.c
      ext/standard/base64.h
      ext/standard/browscap.c
      ext/standard/crc32.c
      ext/standard/crc32.h
      ext/standard/credits.c
      ext/standard/credits.h
      ext/standard/crypt.c
      ext/standard/cyr_convert.c
      ext/standard/cyr_convert.h
      ext/standard/dir.c
      ext/standard/dns.c
      ext/standard/dns.h
      ext/standard/exec.h
      ext/standard/file.c
      ext/snmp/snmp.c
      ext/standard/aggregation.c
      ext/snmp/php_snmp.h
      ext/shmop/php_shmop.h
      ext/shmop/shmop.c
      ext/session/mod_files.h
      ext/session/mod_mm.c
      ext/session/mod_mm.h
      ext/session/mod_user.c
      ext/session/mod_user.h
      ext/session/php_session.h
      ext/readline/readline.c
      ext/recode/php_recode.h
      ext/recode/recode.c
      ext/session/mod_files.c
      ext/qtdom/qtdom.h
      ext/readline/php_readline.h
      ext/posix/posix.c
      ext/pspell/php_pspell.h
      ext/pspell/pspell.c
      ext/qtdom/qtdom.c
      ext/posix/php_posix.h
      ext/pcntl/php_pcntl.h
      ext/pcntl/php_signal.c
      ext/pcntl/php_signal.h
      ext/pcre/php_pcre.c
      ext/pcre/php_pcre.h
      ext/pdf/php_pdf.h
      ext/pcntl/pcntl.c
      ext/overload/overload.c
      ext/overload/php_overload.h
      ext/ovrimos/ovrimos.c
      ext/oracle/oracle.c
      ext/odbc/php_odbc.h
      ext/odbc/php_velocis.h
      ext/odbc/velocis.c
      ext/openssl/openssl.c
      ext/odbc/php_odbc.c
      ext/notes/php_notes.h
      ext/oci8/oci8.c
      ext/ncurses/ncurses_fe.c
      ext/ncurses/ncurses_functions.c
      ext/ncurses/php_ncurses.h
      ext/ncurses/php_ncurses_fe.h
      ext/notes/php_notes.c
      ext/mysql/php_mysql.h
      ext/ncurses/ncurses.c
      ext/mssql/php_mssql.c
      ext/mssql/php_mssql.h
      ext/mysql/php_mysql.c
      ext/msql/php_msql.c
      ext/msql/php_msql.h
      ext/mnogosearch/php_mnogo.c
      ext/mnogosearch/php_mnogo.h
      ext/msession/php_msession.h
      ext/mhash/mhash.c
      ext/mbstring/mbstring.h
      ext/mcve/mcve.c
      ext/mailparse/php_mailparse.h
      ext/mailparse/rfc2045appendurl.c
      ext/mbstring/mbstring.c
      ext/mailparse/mailparse.c
      ext/ircg/ircg_scanner.c
      ext/ircg/ircg_scanner.re
      ext/ircg/php_ircg.h
      ext/ldap/ldap.c
      ext/imap/php_imap.h
      ext/ircg/ircg.c
      ext/imap/php_imap.c
      ext/hyperwave/hg_comm.h
      ext/hyperwave/hw.c
      ext/hyperwave/hw_error.h
      ext/hyperwave/php_hyperwave.h
      ext/icap/php_icap.c
      ext/gmp/php_gmp.h
      ext/hyperwave/hg_comm.c
      ext/gmp/gmp.c
      ext/gd/gdt1.c
      ext/gd/gdt1.h
      ext/gd/php_gd.h
      ext/ftp/ftp.h
      ext/ftp/php_ftp.c
      ext/ftp/php_ftp.h
      ext/gd/gd.c
      ext/fribidi/php_fribidi.h
      ext/ftp/ftp.c
      ext/filepro/php_filepro.h
      ext/fribidi/fribidi.c
      ext/fbsql/php_fbsql.h
      ext/fdf/php_fdf.h
      ext/filepro/filepro.c
      ext/domxml/php_domxml.h
      ext/fbsql/php_fbsql.c
      ext/dbplus/php_dbplus.h
      ext/dio/dio.c
      ext/dio/php_dio.h
      ext/domxml/php_domxml.c
      ext/dbplus/dbplus.c
      ext/dbplus/php_dbplus.c
      ext/dbase/dbase.c
      ext/dbase/php_dbase.h
      ext/dba/php_dba.h
      ext/dba/dba_dbm.c
      ext/dba/dba_gdbm.c
      ext/dba/dba_ndbm.c
      ext/dba/dba_cdb.c
      ext/dba/dba_db2.c
      ext/dba/dba_db3.c
      ext/dba/dba.c
      ext/db/db.c
      ext/db/php_db.h
      ext/cyrus/cyrus.c
      ext/cyrus/php_cyrus.h
      ext/cybermut/cybermut.c
      ext/cybermut/php_cybermut.h
      ext/cybercash/cybercash.h
      ext/ctype/ctype.c
      ext/ctype/php_ctype.h
      ext/crack/crack.c
      ext/crack/php_crack.h
      ext/cpdf/php_cpdf.h
      ext/cpdf/cpdf.c
      ext/ccvs/ccvs.c
      ext/ccvs/ccvs.h
      ext/bz2/bz2.c
      ext/bz2/php_bz2.h
      ext/bcmath/php_bcmath.h
      ext/bcmath/bcmath.c
      ext/aspell/php_aspell.h
      ext/aspell/aspell.c
      build/rules_pear.mk
      build/sysv_makefile
      build/rules.mk
      build/rules_common.mk
      build/mkdep.awk
      build/program.mk
      build/ltlib.mk
      build/fastgen.sh
      build/library.mk
      build/build2.mk
      build/dynlib.mk
      build/bsd_makefile
      build/build.mk
      dynlib.m4
      header
      run-tests.php: Maintain headers.

2002-02-28  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * CODING_STANDARDS:
    Recommend ZEND_* macro over PHP_* macro as discussed in php-dev.

2002-02-28  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * ext/exif/exif.c
      ext/exif/php_exif.h: Fix headers.

2002-02-28  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * README.CVS-RULES: Added how to put bug ID in commit message.

2002-02-28  Rasmus Lerdorf  <rasmus@php.net>

    * main/rfc1867.c:
    That code made no sense - fix it to do what was originally intended

2002-02-28  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/iconv/iconv.c: Fix iconv. Patch by (itai@siftology.com)

2002-02-28  Marcus Börger  <marcus.boerger@post.rwth-aachen.de>

    * ext/exif/php_exif.h
      ext/exif/exif.c
      ext/exif/CREDITS: +Added UNICODE support for Comments
    +Added Description,Artist
    +Added missing memory deallocation
    +Corrected error with multiple comments
    +Corrected handling of ExifVersion, Tag has 4 ASCII characters *WITHOUT* NUL
    +Corrected handling of Thumbnailsize if current source detects size < 0
    +Changed all fields to char* that do not have a maximum length in EXIF standard
    +Undocumented second Parameter ReadAll frees memory to early -> moved to third position default changed to false -> faster
    +New second Parameter [true|false] to specify whether or not to to read thumbnails -> reading is timeconsumpting suppose default should be false -> done so

2002-02-27  Rasmus Lerdorf  <rasmus@php.net>

    * php.ini-dist:
    Drop this default to 12 to avoid some of the .000000000000001 questions.
    I can't imagine much of a BC issue, and we aren't changing existing php.ini
    files anyway.  If someone can think of a problem with this, please speak up

2002-02-27  Brad House  <brad@mainstreetsoftworks.com>

    * ext/mcve/CREDITS
      ext/mcve/Makefile.in
      ext/mcve/config.m4
      ext/mcve/mcve.c
      ext/mcve/mcve.php
      ext/mcve/php_mcve.h
      ext/mcve/tests/001.phpt
      ext/mcve/tests/mcve_simple_test.php
      ext/mcve/tests/mcve_test1.php
      ext/mcve/tests/mcve_test2.php:
    Initial MCVE extension added (Credit Card Processing)

2002-02-27  Andrei Zmievski  <andrei@ispi.net>

    * ext/overload/EXPERIMENTAL
      ext/overload/README: This has been scaring people off.

2002-02-27  Jani Taskinen  <sniper@iki.fi>

    * NEWS: - Missed this one..

2002-02-27  Derick Rethans  <d.rethans@jdimedia.nl>

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

2002-02-27  Adam Dickmeiss  <adam@indexdata.dk>

    * ext/yaz/php_yaz.c
      ext/yaz/php_yaz.h: Implemented yaz_schema. Cleanup. 1.8 YAZ required

2002-02-27  Jani Taskinen  <sniper@iki.fi>

    * configure.in
      main/php_version.h: Fixed minor typo.

2002-02-27  Derick Rethans  <d.rethans@jdimedia.nl>

    * main/php_version.h: - Oops... wishful thinking here :)

    * main/php_version.h
      configure.in: - Update version number

2002-02-27  James Cox  <james@awpimajes.com>

    * NEWS: correcting grammar so it's readable

2002-02-27  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * NEWS: Add 4.1.2 NEWS entries to HEAD.

2002-02-27  Zeev Suraski  <zeev@zend.com>

    * main/php_version.h
      NEWS
      configure.in: Go with 4.1.2

2002-02-27  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * sapi/servlet/servlet.java:
    URLEncoder.encode(string) is deprecated in the Java 2 SDK 1.4.

2002-02-26  Andi Gutmans  <andi@zend.com>

    * main/php_main.h
      main/main.c:
    - Hopefully fix the shutdown_memory_manager() stuff. Part of my previous
    - patch seems to have gotten lost

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

    * ext/session/session.c: - Bring error message back

2002-02-26  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * main/main.c: TSRM Cleanup.

2002-02-26  Andi Gutmans  <andi@zend.com>

    * main/main.c
      main/php_main.h: - Pass shutdown_memory_manager the TSRMLS context.

2002-02-26  Rasmus Lerdorf  <rasmus@php.net>

    * NEWS: There are no fdf changes in this branch as far as I can see.  Not
    sure where this NEWS item came from.

    * NEWS: Remove gd NEWS item

    * ext/gd/config.m4: This line makes no sense to me

2002-02-26  Zeev Suraski  <zeev@zend.com>

    * NEWS: Beautify

2002-02-26  Dan Kalowsky  <dank@deadmime.org>

    * ext/odbc/php_odbc.c:
    Bug fix 15719 as submited by Joseph Southwell and allows NULL values in ODBC

2002-02-26  Edin Kadribasic  <edink@proventum.net>

    * ext/standard/dl.c:
    Allow use of dl() when CLI is compiled with ZTS (bug #15717).

2002-02-25  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/pspell/pspell.c: Fix pspell function entry

2002-02-25  jim winstead  <jimw@apache.org>

    * sapi/apache/config.m4:
    make it more clear that --with-apache and --with-apxs only work with apache 1.x.

2002-02-25  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB/ibase.php:
    Experimental support for handling all the parameters accepted by
    ibase_connect().

2002-02-25  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * NEWS:
    Add news for mm save handler and multiple SAPI start up problem fix

    * ext/session/mod_mm.c
      ext/session/session.c: MFH
     - Fixed CGI (or other SAPI) start up failure when mm save handler is used

2002-02-24  Rui Hirokawa  <rui_hirokawa@ybb.ne.jp>

    * pear/DB/pgsql.php:
    fixed error message handling with PostgreSQL 7.2 

2002-02-24  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/var.c: - Fix the fix.. no need to escape " in single quotes

    * ext/standard/var.c: - Add slashes around string output

    * win32/install.txt: - Update with XP (Thanx to Jan for the patch)

2002-02-24  Stig Bakken  <ssb@fast.no>

    * pear/package.dtd: * fix broken dtd

2002-02-24  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * ext/wddx/wddx.c: Make phpinfo() look nicer.

2002-02-23  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/xslt/sablot.c:
    - Fix info output (Peter Neuman <neuman_peter@hotmail.com>).

2002-02-23  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/package.dtd:
    DTD corrections (make it require minimal data for installer)

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

    * pear/PEAR/Command/Common.php
      pear/PEAR/Command/Install.php
      pear/PEAR/Command.php
      pear/PEAR/CommandResponse.php
      pear/PEAR/Packager.php:
    * started implementing new "cross-environment" command API

2002-02-23  Holger Zimmermann  <zimpel@t-online.de>

    * sapi/pi3web/pi3web_sapi.h
      sapi/pi3web/pi3web_sapi.c:
    Fixed functionality to read in server variables.

2002-02-23  Rui Hirokawa  <rui_hirokawa@ybb.ne.jp>

    * pear/DB/MAINTAINERS
      pear/DB/pgsql.php: updated message format for PostgreSQL 7.2.

2002-02-23  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/README: Point readers to pear web

    * pear/TODO: outdated TODO not needed for the moment

2002-02-23  Rui Hirokawa  <rui_hirokawa@ybb.ne.jp>

    * NEWS: NEWS updated.

    * ext/mbstring/mbstring.c
      ext/gd/config.m4
      ext/fdf/Makefile.in:
    - fixed configuration problem as shared extension for fdf.
    - fixed configuration problem as shared extension for gd with freetype1.
    - default output encoding of mbstring changed to pass to fix initialization problem.

    * ext/gd/config.m4: fixed configure error with freetype1.

    * ext/mbstring/mbstring.c
      ext/mbstring/php_mbregex.c:
    fixed a comment and default output encoding changed to pass.

    * ext/mbstring/mbfilter.c: php.h included.

2002-02-22  Christian Stocker  <chregu@phant.ch>

    * pear/HTML/ITX.php: E_ALL fix

2002-02-22  Vincent Blavet  <vincent@blavet.net>

    * pear/PEAR/Installer.php
      pear/PEAR/Packager.php:
    * Packager : Changing the order of the files in the package archive file.
    The package.xml file is now at the 'root' of the archive, the files tree are under a 'packagename'-'packageversion' folder
    * Installer : installing the knew archive format AND supporting the existing format

2002-02-22  Frank M. Kromann  <frank@frontbase.com>

    * ext/fbsql/php_fbsql.c: Return true on update success.

2002-02-22  Rasmus Lerdorf  <rasmus@php.net>

    * NEWS: Keep track of what has gone into 4.1.2 so far

2002-02-22  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/session/session.c:
    Fix crash bug. 4th parameter is not incremental value, but it's assigned.

    * ext/pspell/pspell.c: Fix crash bug 15607

2002-02-21  Stefan Esser  <s.esser@e-matters.de>

    * main/rfc1867.c: fixing boundary check before someone other does it...

2002-02-21  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/standard/math.c
      ext/standard/php_math.h
      ext/standard/basic_functions.c: Added fmod() function

2002-02-21  Mika Tuupola  <tuupola@appelsiini.net>

    * pear/File/Find.php:
    * Update PHPDoc.

2002-02-21  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * win32/php4dllts.dsp
      win32/php4dll.dsp: Add aggregation to Win32 build.

2002-02-21  Andrei Zmievski  <andrei@ispi.net>

    * ext/standard/basic_functions.h
      ext/standard/php_standard.h
      ext/standard/tests/aggregation/.cvsignore
      ext/standard/tests/aggregation/aggregate.lib.php
      ext/standard/tests/aggregation/aggregate.phpt
      ext/standard/tests/aggregation/aggregate_methods.phpt
      ext/standard/tests/aggregation/aggregate_methods_by_list.phpt
      ext/standard/tests/aggregation/aggregate_methods_by_regexp.phpt
      ext/standard/tests/aggregation/aggregate_properties.phpt
      ext/standard/tests/aggregation/aggregate_properties_by_list.phpt
      ext/standard/tests/aggregation/aggregate_properties_by_regexp.phpt
      ext/standard/tests/aggregation/aggregation_info.phpt
      ext/standard/tests/aggregation/deaggregate.phpt
      ext/standard/aggregation.c
      ext/standard/aggregation.h
      ext/standard/basic_functions.c
      ext/standard/Makefile.in
      NEWS: Adding object aggregation capability along with tests.

2002-02-21  Sean Bright  <elixer@erols.com>

    * acinclude.m4: Fix for bug #15605

2002-02-20  Christian Stocker  <chregu@phant.ch>

    * ext/domxml/php_domxml.c: "o|a|b" is not valid ZE code. changed to "o|ab"

2002-02-20  Vincent Blavet  <vincent@blavet.net>

    * pear/scripts/pearwin.php:
    Config variables must be set between "" while using pear.bat windows script

    * pear/Archive/Tar.php:
    * Correct bug while using windows dir separator. It is now supported

2002-02-20  Rasmus Lerdorf  <rasmus@php.net>

    * ext/standard/crc32.c
      ext/standard/crc32.h:
    Split CRC32 table out into a header file so other code can use it

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

    * ext/iconv/iconv.c: - Fix for bug #15628 (for real now :)

    * sapi/nsapi/nsapi-readme.txt: - Reformatting

    * ext/iconv/iconv.c: - Fix for bug #15638

2002-02-19  David Hedbor  <david@hedbor.org>

    * sapi/caudium/caudium.c: Fixed environment hashing again.

2002-02-19  Derick Rethans  <d.rethans@jdimedia.nl>

    * genfiles: - Fix removal of #line lines

    * EXTENSIONS: - Update to note that I'm the mcrypt extension maintainer

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

    * EXTENSIONS: changed comment for dbx module

2002-02-19  Dan Kalowsky  <dank@deadmime.org>

    * EXTENSIONS:
2002-02-18  Martin Jansen  <mail@martin-jansen.de>

    * pear/PEAR.php: ='typo'

2002-02-18  Marc Boeren  <M.Boeren@guidance.nl>

    * ext/dbx/dbx.c
      ext/dbx/dbx_sybasect.h:
    Oops: source copy&paste should be done with care :) (Mc)

    * ext/dbx/CREDITS
      ext/dbx/Makefile.in
      ext/dbx/dbx.c
      ext/dbx/dbx.dsp
      ext/dbx/dbx_sybasect.c
      ext/dbx/dbx_sybasect.h
      ext/dbx/tests/002.phpt
      ext/dbx/tests/005.phpt
      ext/dbx/tests/006.phpt
      ext/dbx/tests/dbx_test.p:
    Added support for Sybase-CT to dbx module (Mc).

2002-02-18  Ludovico Magnocavallo  <ludo@sumatrasolutions.com>

    * pear/DB/ibase.php: fixed typo

2002-02-17  Martin Jansen  <mail@martin-jansen.de>

    * pear/scripts/pearcmd-info.php: * Fix for bug #15500

2002-02-17  Stig Bakken  <ssb@fast.no>

    * pear/package.dtd: * allow <license> in both <package> and <release>
    * added <changelog> element
    * added "data" role for files
    * allow nested <dir> elements

2002-02-17  Alex Waugh  <alex@alexwaugh.com>

    * sapi/webjames/webjames.c: Updated to new TSRM macros

2002-02-17  Mika Tuupola  <tuupola@appelsiini.net>

    * pear/File/Find.php:
    * added mapTreeMultiple() method.

2002-02-17  Jon Parise  <jon@csh.rit.edu>

    * pear/Makefile.in:
    Image/Remote.php and Mail/mime.php have moved to the pear/ repository.

2002-02-15  Andrei Zmievski  <andrei@ispi.net>

    * NEWS: Fix.

2002-02-15  Jason Greene  <jason@inetgurus.net>

    * ext/sockets/sockets.c: Fix parse string
    (Since arg6 is initialized at null this still catches the wrong param condition)

2002-02-15  Dan Kalowsky  <dank@deadmime.org>

    * ext/odbc/php_odbc.c:
    fix for bug 15516, patch submitted by torben@php.net

2002-02-15  Derick Rethans  <d.rethans@jdimedia.nl>

    * sapi/cgi/cgi_main.c
      sapi/cli/php_cli.c: - Make the errorcode 255. (Doing docs right away)

2002-02-15  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/pgsql/config.m4: Fix problem with sesssion_pgsql module

2002-02-15  Sean Bright  <elixer@erols.com>

    * ext/xslt/config.m4: Fix cosmetic bug. (#15142)

2002-02-14  Derick Rethans  <d.rethans@jdimedia.nl>

    * sapi/cgi/cgi_main.c
      sapi/cli/php_cli.c
      sapi/pi3web/pi3web_sapi.c
      main/main.c:
    - Let php_execute_script return 0 on failure and 1 on sucess, and change
      SAPIs accordingly. (Andrei, Derick)

2002-02-14  Adam Daniel  <adaniel2@cinci.rr.com>

    * pear/HTML/Page.php:
    changed html tags to lowercase and added Nils-Fredrik G. Kaland's
    suggested array support to toHtml

2002-02-14  Edin Kadribasic  <edink@proventum.net>

    * sapi/cli/php_cli.c: Turned implicit_flush on.
    Cleaned up help text.

    * sapi/cli/README: Added README file for CLI SAPI.

2002-02-14  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/ncurses/ncurses.c: - Remove duplicate constant

2002-02-13  Frank M. Kromann  <frank@frontbase.com>

    * ext/sockets/sockets.dsp: Fixing release and debug build on Win32

2002-02-13  Vincent Blavet  <vincent@blavet.net>

    * pear/scripts/pearwin.php:
    * Synchronize pearwin script with pearcmd-xxx.php commands
    * Still work to do

    * pear/scripts/pearcmd-list.php:
    * user system/user config rather than default value

2002-02-13  Yavor Shahpasov  <yavo@itenasolutions.com>

    * pear/HTML/Select.php:
    Initialize $this->_values to avoid warrnings in case _values property is not set

    * pear/Schedule/At.php: White spaces.

2002-02-13  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/dbx/dbx_pgsql.c: Fix memory leaks.

2002-02-13  Marc Boeren  <M.Boeren@guidance.nl>

    * ext/dbx/dbx_pgsql.c:
    Fixed bug where users with empty passwords could not connect. (Mc)

2002-02-13  Vincent Blavet  <vincent@blavet.net>

    * pear/scripts/pearwin.php:
    - Adding support for remote-list command (with XML-RPC installed)
    - Start support of show-config (still work to do ...)

2002-02-13  Andrei Zmievski  <andrei@ispi.net>

    * NEWS: Ack.

2002-02-13  Stig Bakken  <ssb@fast.no>

    * pear/PEAR/Installer.php: * "pear-get install Auth" works now

    * pear/PEAR/Remote.php: * don't use ext/overload yet

    * pear/scripts/pearcmd-remote-list.php: * print package name

2002-02-12  Jason Greene  <jason@inetgurus.net>

    * NEWS: Fix entry

2002-02-12  Jan Lehnardt  <jan@lehnardt.de>

    * pear/DB/mysql.php:
     - added default case for mysql_select_db error handling. It throws a
     - DB_ERROR (unknown error) in the default case.

    * pear/DB.php
      pear/DB/mysql.php:
     - added support for different error messages for the following cases:
     -
     - if a user with unsufficient permissions trys to select a database
     - PEAR::DB previously threw a "no database selected" error  instead
     - of a more proper "insufficient permissions". This is fixed now.
     -
     - if a user selects a nonexistant database PEAR::DB threw a
     - "no database selected" error instead of "no such database".
     - This is fixed as well.
     -
     - I added two new constants to DB.php and a simple case construct to
     - DB/mysql.php which can be easily extended to achive the above. I
     - hope this is ok.
     - Thanks to Till Gerken for mentioning this.

2002-02-12  Andrei Zmievski  <andrei@ispi.net>

    * NEWS: Fix-up.

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

    * main/network.c: Irix defines AF_INET6, but lacks IPv6 support, including
    struct sockaddr_in6.

2002-02-12  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/pgsql/pgsql.c: Initialize automatic persistent connection reset flag

2002-02-12  Andrei Zmievski  <andrei@ispi.net>

    * ext/pcre/php_pcre.h
      ext/pcre/php_pcre.c:
    Fix a long-standing infelicity that resulted in extra regex information
    not being passed to PCRE functions.

    * ext/pcre/php_pcre.h
      ext/pcre/php_pcre.c: Expose pcre_get_compiled_regex as an API function.

2002-02-11  Mark L. Woodward  <mlwmohawk@mohawksoft.com>

    * ext/msession/msession.c: Added one more tweak for 4.0.x compatibility.
    Used "#warning" to inform users of a hard dependency.
    (If #warning is unaccptable, let me know!)

2002-02-11  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * sapi/servlet/README: Fugbix typo.

2002-02-11  Martin Jansen  <mail@martin-jansen.de>

    * pear/HTTP.php: * Fix bug #15423.

2002-02-11  Richard Heyes  <richard.heyes@heyes-computing.net>

    * pear/Mail/mime.php
      pear/Mail/mimeDecode.php
      pear/Mail/mimePart.php
      pear/Mail/xmail.dtd
      pear/Mail/xmail.xsl:
    * Removed these files as they're now in /pear/Mail_Mime

2002-02-11  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/ldap/ldap.c: - Fix protos.

2002-02-10  Sean Bright  <elixer@erols.com>

    * ext/gmp/gmp.c:
    '0b' could be the beginning of a hex string (without leading '0x') so if
    the user specifies base 16, use that instead.

    * ext/gmp/tests/003.phpt: Add a new test for GMP base recognition.

    * ext/gmp/gmp.c: Fix for bugs #10133 and #15454.

    Bug #15454 results from a bug in GMP.  If you pass in a string '0xABCD' and
    specify a base of 0, GMP figures out that it is hex and skips over the 0x
    characters.  If you specify base 16, then it doesn't skip those chars.
    This was confirmed with the following test program:


    int main()
    {
            char *str_one, *str_two;
            mpz_t num_one, num_two;

    	mpz_init_set_str (num_one, "0x45", 0);
    	str_one = mpz_get_str(NULL, 10, num_one);

    	mpz_init_set_str (num_two, "0x45", 16);
    	str_two = mpz_get_str(NULL, 10, num_two);

    	printf("%s / %s\n", str_one, str_two);

    	mpz_clear (num_one);
    	mpz_clear (num_two);

    	return 0;
    }

    We now take anything that starts with 0[xX] as hexidecimal and anything
    that starts 0[bB] as binary (this is what GMP does internally).  We also
    no longer force the base to 10 or 16, but instead let GMP decide what the
    best base is, be it hex, dec, or octal.

2002-02-10  Jason Greene  <jason@inetgurus.net>

    * ext/standard/basic_functions.c
      ext/standard/php_var.h
      ext/standard/var.c: Renamed zval_debug_dump() to debug_zval_dump()

2002-02-10  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/PEAR/Common.php: Now System will return false on fail

    * pear/tests/pear_system.phpt: test suite for the System class

    * pear/System.php:
    - Now error will be triggered with trigger_error(). When a command
      fails the function will return false
    - In-line documentation update

2002-02-10  Thies C. Arntzen  <thies@thieso.net>

    * ext/oci8/oci8.c
      ext/oci8/php_oci8.h:
    only rollback at script end if there is something to rollback.

2002-02-10  Stig Venaas  <venaas@uninett.no>

    * ext/ftp/ftp.c
      main/network.c
      main/php_network.h:
    Added php_sockaddr_size() in network.c (and the header file). This is used
    in ftp.c to make sure connect() and bind() is called with size argument
    which is exactly the size of the relevant sockaddr_xx structure

2002-02-10  Rui Hirokawa  <rui_hirokawa@ybb.ne.jp>

    * pear/Mail/mime.php: Mail/mime/get has wrong parameter name.

2002-02-10  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * ext/tokenizer/tokenizer.c: TSRM fixes.

2002-02-10  Jason Greene  <jason@inetgurus.net>

    * ext/standard/basic_functions.c
      ext/standard/php_var.h
      ext/standard/var.c:    internal information such as refcounts, and the true type names (Jason)

2002-02-10  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/mbstring/mbstring.c: Fix typo

2002-02-09  Andrei Zmievski  <andrei@ispi.net>

    * ext/tokenizer/php_tokenizer.h
      ext/tokenizer/tokenizer.c: *** empty log message ***

2002-02-09  Stig Bakken  <ssb@fast.no>

    * ext/tokenizer/tokenizer.c: * ZTS fix

2002-02-08  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * ext/tokenizer/.cvsignore
      ext/tokenizer/tokenizer.dsp
      win32/php_modules.dsw
      php.ini-dist
      php.ini-recommended:
    Add MSVC workspace for tokenizer extension. Add php_tokenizer.dll entries to php.ini-*.

2002-02-08  Thies C. Arntzen  <thies@thieso.net>

    * ext/oci8/oci8.c
      ext/oci8/php_oci8.h:
    - got rid of unneded calls to OCIAttrGet when reexecuting the same query
    - only invalidate the define list after all rows from a REFCORSOR are read,
      "normal" corsors will now remember their column defines. this means that
      ocigetcolumn[name|type|..] will from now on work even after the result set
      has been read.

2002-02-08  Stig Bakken  <ssb@fast.no>

    * ext/tokenizer/.cvsignore
      ext/tokenizer/CREDITS
      ext/tokenizer/EXPERIMENTAL
      ext/tokenizer/Makefile.in
      ext/tokenizer/config.m4
      ext/tokenizer/php_tokenizer.h
      ext/tokenizer/tokenizer.c
      ext/tokenizer/tokenizer.php: Added Andrei's tokenizer extension 

2002-02-08  Mark L. Woodward  <mlwmohawk@mohawksoft.com>

    * ext/msession/msession.c:
    Backward compatibility to 4.0.6 does not have "HAVE_PHP_SESSION" define
    Renamed PHP_4_x_API to PHP_4_x

2002-02-07  Sterling Hughes  <sterling@bumblebury.com>

    * ext/session/php_session.h
      ext/session/session.c:
    move to the ZEND_DECLARE_MODULE_GLOBALS() and ZEND_EXTERN_MODULE_GLOBALS
    macros

2002-02-07  Martin Jansen  <mail@martin-jansen.de>

    * pear/scripts/pearcmd-remote-list.php: * Better error handling.

    * pear/HTTP.php: * Partially fix bug #15423.

2002-02-07  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * main/output.c: Legacy code removed.
    This line incorrectly removes buffer.
    This line was correct only when ouput.c does not support
    nested output buffers. Fixed bug #15178

2002-02-07  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB/common.php
      pear/DB/oci8.php:
    Moved the array_change_key_case() PHP func definition to common

    * pear/DB/ibase.php: change column case to lower in compatibility mode

    * pear/DB/ibase.php: ws

2002-02-06  Frank M. Kromann  <frank@frontbase.com>

    * ext/fbsql/php_fbsql.c:
    Convert pLists to output character set before parsing the list

    * ext/fbsql/php_fbsql.c: Added order by clause in fbsql_list_tables().
    Table names will now be sorted.

    * ext/fbsql/php_fbsql.c
      ext/fbsql/php_fbsql.h:
    Adding fbsql_table_name() aliased fbsql_tablename() for compatibility with MySQL

2002-02-06  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/odbc/config.m4: - Fix for bug 15404

2002-02-06  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/mbstring/mbstring.c: Remove unused line

    * ext/mbstring/mbstring.c: Fixed crash with mb_output_handler()
    When mb_output_hanlder is applied muiltiple times, PHP does not output.
    This should be fixed also.

2002-02-06  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/System.php:
    added 'System::type()' (show the full path of a command)
    Copied almost verbatim from Stig's PEAR_Dependency::checkProgram()

2002-02-06  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/pgsql/pgsql.c
      ext/pgsql/php_pgsql.h: Clean up code.
    Removed PHP_PGSQL_API macro.
    Define pgsql_globals_id

    * ext/pgsql/pgsql.c
      ext/pgsql/php_pgsql.h: Make module specified functions to static.
    Added TSRMLS_D/C, get rid of one TSRMLS_FETCH.

2002-02-05  Andi Gutmans  <andi@zend.com>

    * ext/wddx/wddx.c
      ext/standard/array.c:
    - Add TSRMLS_FETCH()'s needed for the new object overloading in ZE2.

2002-02-05  Mark L. Woodward  <mlwmohawk@mohawksoft.com>

    * ext/msession/msession.c:
    Sorry guys, PHP 4.0.6's ZEND_MODULE_API_NO is whacked, it has an extra
    zero, thus ZEND_MODULE_API_NO >= xxxx, will not work for about 18000 years.
    Added better checking, and cleaned up some of the #ifdef you seem to love
    so much.

2002-02-05  Hartmut Holzgraefe  <hartmut@six.de>

    * ext/msession/msession.c:
    removed the new-style parameter parser code for bc *and* readability
    reasons, changed the remaining #ifdefs to check the api version
    directly instead of using the not really related OLD_ZEND_PARAM macro

2002-02-05  David Eriksson  <david@2good.com>

    * ext/satellite/.cvsignore
      ext/satellite/Makefile.in
      ext/satellite/README
      ext/satellite/class.c
      ext/satellite/class.h
      ext/satellite/common.c
      ext/satellite/common.h
      ext/satellite/config.m4
      ext/satellite/corba.c
      ext/satellite/corba.h
      ext/satellite/enum.c
      ext/satellite/enum.h
      ext/satellite/findtype.c
      ext/satellite/findtype.h
      ext/satellite/hashtable.c
      ext/satellite/hashtable.h
      ext/satellite/multiple_components.patch
      ext/satellite/namedvalue_to_zval.c
      ext/satellite/namedvalue_to_zval.h
      ext/satellite/object.c
      ext/satellite/object.h
      ext/satellite/php_orbit.c
      ext/satellite/php_orbit.h
      ext/satellite/struct.c
      ext/satellite/struct.h
      ext/satellite/typecode.c
      ext/satellite/typecode.h
      ext/satellite/typemanager.c
      ext/satellite/typemanager.h
      ext/satellite/zval_to_namedvalue.c
      ext/satellite/zval_to_namedvalue.h:
    - Removed Satellite. It is now part of PEAR.

2002-02-05  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * main/output.c: pval -> zval
    Check number of parameters

    * main/main.c
      php.ini-dist: register_globals=off is defualt for 4.2.0

2002-02-05  Jani Taskinen  <sniper@iki.fi>

    * ext/session/session.c: Let's be consistent and use zval instead of pval

    * ext/session/php_session.h
      ext/session/session.c: Export php_session_start().

    * configure.in:
    The extensions build as shared were installed into wrong place
    even as the layout was PHP.

2002-02-04  Jaroslaw Kolakowski  <J.Kolakowski@students.mimuw.edu.pl>

    * ext/domxml/php_domxml.c:
    Fixed compile error

2002-02-04  Mark L. Woodward  <mlwmohawk@mohawksoft.com>

    * ext/msession/msession.c: More 4.0.6 compatibility.

    * ext/msession/msession.c: Restored backward compatibility to PHP 4.0.6

2002-02-04  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB/TESTERS: Added How To Run Tests

2002-02-04  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/crack/crack.c
      ext/mailparse/mailparse.c: Fix ZTS startup crash

2002-02-04  Thies C. Arntzen  <thies@thieso.net>

    * ext/oracle/config.m4: add oracle 9 detection for oracle-module

2002-02-04  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/mbstring/mbstring.c: Remove TSRMLS_FETCH() does not need

    * ext/msession/msession.c
      ext/domxml/php_domxml.c: Fix ZTS build

2002-02-03  jim winstead  <jimw@apache.org>

    * makedist: don't include old changelogs in distribution, either

2002-02-03  Adam Dickmeiss  <adam@indexdata.dk>

    * Makefile.in
      configure.in:
    Zend config sets ZEND_EXTRA_LIBS. Bugs 14452, 14602, 14616, 14824

2002-02-03  Martin Jansen  <mail@martin-jansen.de>

    * pear/DB/ibase.php:
    * nextID() and tableInfo() support by Lutz Brueckner <lb@lamuella.de>.

2002-02-03  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/session/mod_files.c
      ext/session/session.c:
    Revert last commit. Last patch has problem for the 1st request.

    * ext/session/mod_files.c
      ext/session/session.c: Fixed crash when save_path is invalid.
    Fixed crash when user save handler is incorrectly used.
    Fixed crash when session read failed.

    * ext/iconv/tests/001.phpt
      ext/iconv/tests/002.inc
      ext/iconv/tests/002.phpt
      ext/iconv/tests/skipif.inc: Added UCS4 test

    * sapi/roxen/roxen.c: MFH

2002-02-02  Shane Caraveo  <shane@caraveo.com>

    * sapi/isapi/stresstest/getopt.c
      sapi/isapi/stresstest/getopt.h: now needs getopt

    * sapi/isapi/stresstest/stresstest.cpp
      sapi/isapi/stresstest/stresstest.dsp: an update to stresstest

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

    * sapi/cgi/cgi_main.c
      sapi/fastcgi/fastcgi.c
      sapi/pi3web/pi3web_sapi.c
      sapi/servlet/servlet.c:
    Remove obsolete CG(extended_info) = 0 calls, we already do this in zend_set_default_compile_time_values().

    * ext/calendar/french.c
      ext/calendar/julian.c: Consistency.

    * ext/calendar/gregor.c
      ext/calendar/jewish.c: Fix a warning.

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

    * configure.in: Revert revision 1.294.

    This commit broke things in interesting ways under FreeBSD.  By adding these
    default header files to every header check, a number of subsequent checks
    failed (due to unsatisfied header file dependencies).  This occured because
    <netinet/in.h>, for example, requires <sys/types.h>.  In other words, these
    default includes are not autonomous and don't make workable defaults.

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

    * main/fopen_wrappers.c: Fix thread-safe build.

2002-02-02  Stig Bakken  <ssb@fast.no>

    * pear/DB/odbc.php: * use seqname_format option

    * pear/DB/common.php
      pear/DB/fbsql.php
      pear/DB/mssql.php
      pear/DB/mysql.php
      pear/DB/oci8.php
      pear/DB/odbc.php
      pear/DB/pgsql.php:
    * the actual name of the sequences or sequence emulation tables may
      now be configured with the "seqname_format" option

    * pear/package.dtd: * add some missing attributes

2002-02-01  Andrei Zmievski  <andrei@ispi.net>

    * ext/standard/array.c:
    Converted extract() to use smart_str for variable name manipulation. This
    sped it up a bit.

2002-02-01  James E. Flemer  <jflemer@acm.jhu.edu>

    * main/fopen_wrappers.c
      main/fopen_wrappers.h:
    Changed php.ini directive 'safe_mode_include_dir' to accept a
    (semi)colon separated path, rather than a single directory.
    Also moved checking of said path into a separate path for code
    readability.

2002-02-01  Andrei Zmievski  <andrei@ispi.net>

    * NEWS: Added is_a() function.

2002-02-01  Adam Dickmeiss  <adam@indexdata.dk>

    * ext/yaz/php_yaz.c: Fixes in MARC decoder (base adress, DANmarc case).

2002-02-01  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB.php: Fix remote security risk, pointed out by Wolfram Kriesing

    * pear/DB/tests/db_parsedsn.phpt
      pear/DB.php:
    Added support for passing special backend params in DSN. Ex:
    ibase://user:pass@localhost/db?role=foo&dialect=bar

2002-02-01  Thies C. Arntzen  <thies@thieso.net>

    * ext/readline/readline.c: remove some crap

2002-02-01  James Cox  <james@awpimajes.com>

    * php.gif
      php4.gif
      php4.spec.in:
    2 years is ages.... and no way temporary. changed the php4 logo to a versionless one.

2002-02-01  Derick Rethans  <derick@vl-srm.net>

    * ext/gd/gd.c:
    - Fix for bug 14899 (patch by Sander Roobol <sander@php.net>)

2002-02-01  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/iconv/iconv.c:
    Fixed bug with encodings that has 0 byte in strings. Patch by <itai@siftology.com>
    Fixed possible problem with encodings that a char can be larger than
    4 bytes.

2002-01-31  James Cox  <james@awpimajes.com>

    * LICENSE: updating license to 2002 (hasn't been done since 2000)

2002-01-31  Boian Bonev  <boian@bonev.com>

    * ext/vpopmail/php_vpopmail.c: fix comment

2002-01-31  Martin Jansen  <mail@martin-jansen.de>

    * pear/HTTP.php: * Fix bug #15313

2002-01-31  Bertrand Mansion  <bmansion@mamasam.com>

    * pear/HTML/Table.php: Thanks to Arnaud Limbourg:
    - phpDoc and cosmetic fixes

2002-01-31  Derick Rethans  <derick@vl-srm.net>

    * ext/standard/dl.c:
    - Fix for bug 15311 (type mismatch of php_dl when #ifndef HAVE_LIBDL)

2002-01-31  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * sapi/roxen/roxen.c: A fix for the bug number 13231 & 11699.
    Makes the roxen support compile.  Patch by Lars Wilhelmsen <lars@sral.org>

2002-01-31  Derick Rethans  <derick@vl-srm.net>

    * ext/openssl/openssl.c: - Fix for openssl_pkcs7_sign segfaults
      (patch by Christian Stocker <chregu@php.net>)

2002-01-31  Stig Bakken  <ssb@fast.no>

    * pear/scripts/pearize.in: * lowercase tags and attributes

    * pear/Makefile.in: * remove broken rule for rebuilding Makefile

2002-01-31  Edin Kadribasic  <edink@proventum.net>

    * main/main.c: Ignore register_globals for $argc and $argv under CLI SAPI.

2002-01-30  Edin Kadribasic  <edink@proventum.net>

    * acinclude.m4
      configure.in
      sapi/cli/Makefile.in:
    Enable extensions to specify that they are not supposed to be
    built with the CLI SAPI. This is done by passing "nocli" as the
    3rd parameter to PHP_EXTENSION macro.

2002-01-30  Dan Kalowsky  <dank@deadmime.org>

    * ext/odbc/php_odbc.c: Fix for bug #14803

2002-01-30  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * sapi/servlet/README: Fugbix typo. Update path to /lib/optional.

2002-01-30  Stig Bakken  <ssb@fast.no>

    * pear/Makefile.in: * don't make command libs executable

    * pear/scripts/pear-get.in
      pear/scripts/pear.in
      pear/scripts/pearcmd-common.php
      pear/scripts/pearcmd-help.php
      pear/scripts/pearcmd-info.php
      pear/scripts/pearcmd-install.php
      pear/scripts/pearcmd-list.php
      pear/scripts/pearcmd-package.php
      pear/scripts/pearcmd-remote-list.php
      pear/scripts/pearcmd-show-config.php
      pear/scripts/pearcmd-uninstall.php
      pear/Makefile.in:
    * modularize "pear" and "pear-get" commands somewhat.  checking options
      etc. is done for both in pearcmd-common.php.

    * pear/PEAR/Common.php: * silence warning

    * pear/HTML/Form.php: * XHTML fixes by Hans Westerbeek

    * pear/package.dtd: * bring DTD up to date

2002-01-30  Thies C. Arntzen  <thies@thieso.net>

    * ext/oci8/oci8.c: enable "user-interrupts"

2002-01-29  Chuck Hagenbuch  <chuck@horde.org>

    * pear/DB/mysql.php:
    Fix errors caused by not checking for variables before using them.

2002-01-29  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * win32/php_modules.dsw: Overload is built-in.

2002-01-29  Stig Bakken  <ssb@fast.no>

    * pear/DB/oci8.php: typo :)

2002-01-28  Stig Bakken  <ssb@fast.no>

    * pear/Net/Socket.php:
    * doc comments, add setTimeout() and getStatus(), thanks to
      Mads Mohr Christensen <mohr@slamkode.dk>

2002-01-28  Sterling Hughes  <sterling@designmultimedia.com>

    * EXTENSIONS: Commit for mr. torben:
    Add XSLT to extensions file, mark sablot obsolete

2002-01-28  Jon Parise  <jon@csh.rit.edu>

    * ext/standard/math.c: These are now defined in zend_config.w32.h.

2002-01-28  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB/dbase.php:
    PEAR dbase driver. Supports, connect, fetch modes, row limit,
    numrows and numcols.

2002-01-28  jim winstead  <jimw@apache.org>

    * ext/interbase/Makefile.in: testing checkin

2002-01-27  Jon Parise  <jon@csh.rit.edu>

    * ext/standard/math.c:
    zend_isinf() is already defined in Zend/zend_config.w32.h for Win32.

2002-01-27  Sterling Hughes  <sterling@designmultimedia.com>

    * ext/bz2/bz2.c: fix proto's for Herr. Holzraefe.  int -> resource

2002-01-27  Chuck Hagenbuch  <chuck@horde.org>

    * pear/Net/SMTP.php: command spacing

2002-01-27  fabrice aeschbacher  <fabrice.aeschbacher@laposte.net>

    * ext/interbase/php_interbase.h
      ext/interbase/interbase.c:
    add ibase_add_user(), ibase_modify_user(), ibase_delete_use()

2002-01-27  Jon Parise  <jon@csh.rit.edu>

    * ext/standard/math.c:
    Use the zend_* versions of finite(), isinf(), and isnan(), as defined
    in php_config.h.  Redefine the zend_* versions in the case of Win32.

    This fixes the build on systems that don't provide a native version of,
    say, isinf() (e.g. Solaris).

    * sapi/cgi/getopt.c
      sapi/cli/getopt.c
      ext/xml/xml.c: Add a note that this statement will never be reached.

    * ext/standard/mail.c:
    Add a comment indicating that this return statement will never be reached.


    * ext/sockets/sockets.c: Use socklen_t (instead of int) where appropriate.

    * ext/sockets/sockets.c:
    Because php_network.h includes <sys/socket.h>, it must be included after
    _XPG4_2 is defined.

    This fixes the build under Solaris 8.

2002-01-27  Sterling Hughes  <sterling@designmultimedia.com>

    * ext/standard/pack.c: don't throw fatal errors, throw E_WARNING instead.

    * ext/curl/curl.c: hopefully fix --with-openssl issues

    * ext/bz2/bz2.c: Source code cleanup

    * ext/bz2/bz2.c:
    Update code to last working version to avoid recent breaks.


2002-01-27  Marko Karppinen  <karppinen@pobox.com>

    * acinclude.m4:
    Enable developers to use PHP_ARG_ENABLE and PHP_ARG_WITH silently
    to maintain legacy configure options without clutter in the
    configure help and checking output.

2002-01-26  Marko Karppinen  <karppinen@pobox.com>

    * configure.in:
    - Reorganized stuff in configure.in and added a few comments
    - Added a check for ApplicationServices/ApplicationServices.h (Mac OS X)
    - Added AC_PROG_CPP, AC_PROG_CXX and AC_PROG_CXXCPP
    - Improved the IPv6 check to fail on Mac OS X (there's no IPv6 there yet)

2002-01-26  Vincent Blavet  <vincent@blavet.net>

    * pear/PEAR/Packager.php: * Remove the use of a temp dir
    * Tar archive is now doing the same work with less overhead

2002-01-25  Marko Karppinen  <karppinen@pobox.com>

    * configure.in:
    Improve detection of resolv.h on versions of Darwin, FreeBSD and Solaris
    (this requires post-2.13 autoconf, but 2.13 ignores it gracefully)

    * configure.in: Relying only on host_alias is wrong

2002-01-25  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/session/mod_mm.c: We need mm file for each user.

2002-01-25  Derick Rethans  <derick@vl-srm.net>

    * ext/xmlrpc/config.m4:
    - Fix for bug #15227: Compiling the CGI binary with xmlrpc fails to
      build/link expat

    * ext/standard/basic_functions.c:
    - Fixed highlight_* (make it more robust)

2002-01-25  Hartmut Holzgraefe  <hartmut@six.de>

    * ext/ctype/EXPERIMENTAL: no longer experimental

2002-01-25  Derick Rethans  <derick@vl-srm.net>

    * ext/standard/basic_functions.c:
    - Added optional parameter to highlight_string and highlight_file which
      makes these functions return a highlighted string instead of dumping
      to standard output. (Derick)
    - Added optional parameter to highlight_string and highlight_file which
      makes these functions return a highlighted string instead of dumping
      to standard output. 

2002-01-25  Rasmus Lerdorf  <rasmus@php.net>

    * ext/standard/array.c:
    (extraxt) add EXTR_IF_EXISTS and EXTR_PREFIX_IF_EXISTS flags

2002-01-25  Derick Rethans  <derick@vl-srm.net>

    * ext/domxml/php_domxml.c:
    - Fix for bug #14934: type property not set in comment nodes (domxml)

2002-01-25  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/session/mod_mm.c: Add sapi postfix for mm save path.
    cli/cgi would not complain about mm save handler with this.

2002-01-25  Doug MacEachern  <dougm@covalent.net>

    * sapi/apache2filter/sapi_apache2.c: adjust to ap_get_brigade() API change

2002-01-25  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * php.ini-recommended
      php.ini-dist:
    Added "pgsql.auto_reset_persistent" ini entry to catch broken connection
    always with pg_pconnect(). (Default Off in source and php.ini-*)
    This option requires a little overhead for pg_pconnect().

    * ext/pgsql/pgsql.c
      ext/pgsql/php_pgsql.h: Added "auto_reset_presistent" ini entry.

2002-01-24  Marko Karppinen  <karppinen@pobox.com>

    * build/buildcheck.sh:
    Latest libtools output a multiline version info. Deal with that

    * ext/standard/parsedate.y:
    Ignore ordinal suffixes on numbers (bug #15210)

2002-01-24  Edin Kadribasic  <edink@proventum.net>

    * sapi/cli/config.m4: Added --disable-cli option.

    * NEWS: Made entry more consistent.

2002-01-24  Sascha Schumann  <sascha@schumann.cx>

    * configure.in: fix typo, found by edin

2002-01-24  Andrei Zmievski  <andrei@ispi.net>

    * ext/wddx/wddx.c: Revert back to using <char> element for newlines.

2002-01-24  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/CODING_STANDARDS: correct url

2002-01-24  Marko Karppinen  <karppinen@pobox.com>

    * acinclude.m4:
    Added a case for Darwin / Mac OS X to PHP_SHLIB_SUFFIX_NAME

    * php.ini-dist
      php.ini-recommended: Corrected a confusing comment (see bug #14972)

2002-01-24  Sascha Schumann  <sascha@schumann.cx>

    * Makefile.in
      acinclude.m4
      configure.in
      ext/ircg/config.m4: Don't build CLI, if an extension requests that.

    In this case, the ircg extension refers to thttpd-specific symbols
    which causes the build of the cli sapi module to fail.

2002-01-24  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * NEWS: Change NEWS entry according to pgsql source change.

    * ext/pgsql/pgsql.c:
    Revert last 2 commit. Instead, make php_pgsql_do_connect() to catch
    broken connection always.

2002-01-24  Vincent Blavet  <vincent@blavet.net>

    * pear/scripts/pearwin.php
      pear/PEAR/Installer.php:
    * Call the PEAR_Registry constructor with the optional parameter

    * pear/PEAR/Registry.php:
    * Adding the ability to set the PEAR_INSTALL_DIR while creating the Registry object (in the same way as Installer.php)

    * pear/Archive/Tar.php:
    * Adding support of extraction of remote archive http://www/archive.tgz
    * Correct bug while using Windows root path c:\xxx\yyy in extract fct

2002-01-24  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * NEWS:
    Added pgsql connection reset feature. Add my name to --enable-safe-mode fix.

    * ext/pgsql/pgsql.c:
    Add a little more fault tolerance for pg_host, pg_tty and more.

    * ext/pgsql/pgsql.c:
    No more httpd restart is required when PostgreSQL is rebooted.

2002-01-24  James Cox  <james@awpimajes.com>

    * INSTALL:
    updated INSTALL to be more relevant.. more fixes coming (at some point)

2002-01-23  Vincent Blavet  <vincent@blavet.net>

    * pear/scripts/pearwin.php: * Add uninstall command
    * Add list-installed command

2002-01-23  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/System.php:
    Return false when the directory can not be created in mkDir()

    * pear/DB/tests/driver/.cvsignore: cvsignore

2002-01-23  Frank M. Kromann  <frank@frontbase.com>

    * ext/fbsql/php_fbsql.c: Fixing spelling error in FrontBase section
    Changed som int to unsigned int to remove compiler warnings

    * php.ini-dist
      php.ini-recommended: Fixing spelling error in FrontBase section

2002-01-23  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * win32/php4ts.dsw
      win32/php4ts_cli.dsp: Add workspace to build CLI SAPI Module on Win32.

    * sapi/cli/php_cli.c: Give Edin Kadribasic his due credits.

2002-01-23  Edin Kadribasic  <edink@proventum.net>

    * sapi/cli/php_cli.c:
    No need to dupe this string in cli sapi (Bug #15181).

2002-01-23  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * EXTENSIONS: Added comment for pgsql module.

2002-01-23  Hartmut Holzgraefe  <hartmut@six.de>

    * EXTENSIONS: claiming maintainance ownership of ext/calendar

    * apidoc-zend.txt: added info about FETCH macros
    (written over a year ago but somehow never commited)

2002-01-22  Jaroslaw Kolakowski  <J.Kolakowski@students.mimuw.edu.pl>

    * ext/domxml/php_domxml.c:
    Simplified domxml_substitute_entities_default() function

2002-01-22  Sterling Hughes  <sterling@designmultimedia.com>

    * ext/curl/curl.c: just init CURL_GLOBAL_SSL

2002-01-22  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB/ibase.php:
    - Fix a problem with the cast to array from ibase_fetch_object
      (reported by Ludovico Magnocavallo <ludo@sumatrasolutions.com>)
    - Removed old, unsupported, unused DB_ibase->fetchRow()
      (remember that fetchRow is a method from DB_result not DB_driver)

2002-01-22  Jan Lehnardt  <jan@lehnardt.de>

    * pear/File/Find.php:  - whitespace fix

    * pear/File/Find.php:
     - initialize $matches to avoid error message on unset variable
       if no matches are found.

2002-01-22  Christian Stocker  <chregu@phant.ch>

    * ext/domxml/php_domxml.c:
    Getting rid of some compile warnings (thanks to markus for pointing me in the right direction :) )

2002-01-22  Sean Bright  <elixer@erols.com>

    * ext/standard/string.c:
    Fix for bug #15130.  Way too much effort for this bug, but cleaned up code
    a bit, use zend_parse_parameters(), etc, etc.  We only look for extensions
    in the basename, not the full path.

2002-01-21  Jaroslaw Kolakowski  <J.Kolakowski@students.mimuw.edu.pl>

    * ext/domxml/php_domxml.h
      ext/domxml/php_domxml.c:
    Added domxml_substitute_entities_default() function

2002-01-21  Chris Jarecki  <zenderx@ipro.pl>

    * ext/domxml/php_domxml.c:
    - fixed bug caused by libxml2 in xpath_register_ns()
    - registered namespaces are now persistent

2002-01-21  Jon Parise  <jon@csh.rit.edu>

    * pear/Archive/Tar.php
      pear/Makefile.in:
    Adding Archive/Tar.php to php4/pear/.  This is needed in order for the
    phptar script (php4/pear/scripts/phptar) to be useful, so it makes sense
    to make Archive/Tar.php a standard component.

2002-01-21  Martin Jansen  <mail@martin-jansen.de>

    * pear/HTML/IT.php: * Add possibility to load external files in template.
      (Patch by Christian Dickmann <chrisdicki@gmx.de>.)

2002-01-21  Hartmut Holzgraefe  <hartmut@six.de>

    * acinclude.m4: removed check macros no longer needed due to CLI work
    (plus reverting last commit, was in wrong dir :( )

    * acinclude.m4: removed check macros no longer needed due to CLI work

2002-01-21  Dan Kalowsky  <dank@deadmime.org>

    * ext/odbc/php_odbc.c: this closes off a number of ODBC bugs.

2002-01-21  Derick Rethans  <derick@vl-srm.net>

    * main/network.c:
    - Fix for bug #15057: getimagesize() crashes when offline (on MacOSX)

2002-01-21  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/pgsql/pgsql.c: Fixed typo and proto

2002-01-20  Edin Kadribasic  <edink@proventum.net>

    * sapi/cgi/cgi_main.c:
    Fixed bug #9041 and others in the same class (patch by pete.lee@ubs.com)

2002-01-20  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/standard/datetime.c:
    - Fix crash with invalid localtime on Win32 systems.

2002-01-20  Doug MacEachern  <dougm@covalent.net>

    * sapi/apache2filter/sapi_apache2.c:
    adjust to ap_get_brigade and input filter api changes

2002-01-20  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * pear/Cache.php
      pear/Cache.xml
      pear/Makefile.in: Move Cache to /pear.

    * pear/Makefile.in: Move Payment_Verisign to /pear.

    * pear/Makefile.in
      pear/Log.php:
    Move Benchmark, Math, Numbers to /pear. Remove Log, it was already in /pear.

2002-01-20  Hartmut Holzgraefe  <hartmut@six.de>

    * ext/fbsql/php_fbsql.c: cut&paste errors in protos fixed

    * ext/domxml/php_domxml.c: proto fix

2002-01-20  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * TODO: Fixed by Sean Bright's commit.

2002-01-20  Sean Bright  <elixer@erols.com>

    * ext/db/db.c: Forgot to remove the return from a void function

    * ext/db/db.c
      ext/db/php_db.h:
    These PHP3_* macros aren't defined in the code, so these haven't been doing
    anything for some time now (at least since 4.0 was released).  So let's go
    ahead and remove those.

2002-01-20  Edin Kadribasic  <edink@proventum.net>

    * TODO-4.2.txt: Removed entry implemented in cli sapi.

    * main/.cvsignore
      main/Makefile.in
      sapi/cli/Makefile.in
      acinclude.m4
      configure.in
      ext/ncurses/config.m4
      ext/pcntl/config.m4
      ext/readline/config.m4:
    Modified the build system to make certain extensions (pcntl, ncurses,
    pcntl) only with cgi/cli sapi's. This was done by adding 3rd optional
    parameter to PHP_EXTENSION macro which should be set to "cli" if
    the extension only makes sense for that class of api's.

    * ext/readline/.cvsignore: Added missing entry to .cvsignore

2002-01-20  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * header: Get rid of needless spaces

    * README.CVS-RULES: Revert my last commit

2002-01-19  Edin Kadribasic  <edink@proventum.net>

    * TODO: Removed two issues resolved by the introduction of sapi/cli.

    * sapi/cli/php_cli.c: Merged patch from sapi/cgi.

2002-01-19  Jaroslaw Kolakowski  <J.Kolakowski@students.mimuw.edu.pl>

    * ext/domxml/php_domxml.c:
    - Fixed passing parameters to domxml_xslt_process(). Now they can be either strings or XPath expressions.
    - Several minor fixes in domxml_xslt_process().

2002-01-19  Martin Jansen  <mail@martin-jansen.de>

    * pear/Crypt/HCEMD5.php: * Fix bug #13189.

2002-01-19  Wez Furlong  <wez.php@thebrainroom.com>

    * ext/mailparse/rfc2045cdecode.c:
    Make the decoder less strict to allow for brain-dead mailers that mark
    messages as 7bit but then include 8bit chars in the body.
    Thanks to Dan Fitzpatrick for bringing this to my attention.

2002-01-19  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB/common.php
      pear/DB.php:
    Stores limit_from and limit_count as DB_result proporties instead
    of DB_common. Fixs bug when doing queries inside limitQuery results.

    * pear/DB/common.php: ws

    * pear/DB/oci8.php:
    Removed unecesary check and only change the case of the keys
    when data is returned (fetchInto())

2002-01-19  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * main/main.c: Make --enable-safe-mode useful

2002-01-18  Shane Caraveo  <shane@caraveo.com>

    * sapi/cgi/cgi_main.c: reimplement extension listing

2002-01-18  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB/tests/driver/02fetch.phpt
      pear/DB/tests/driver/03simplequery.phpt
      pear/DB/tests/driver/04numcols.phpt
      pear/DB/tests/driver/06prepexec.phpt
      pear/DB/tests/driver/08affectedrows.phpt
      pear/DB/tests/driver/15quote.phpt:
    removed unneeded require_once "DB.php";

    * pear/DB/odbc.php: - Fix fetch row by number (ODBC starts at 1)
    - New "navision" syntax (this driver doesn't support fetchs by
      number, so emulate row limit by skipping rows)

2002-01-18  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/domxml/php_domxml.c: - More WS fixes

2002-01-18  Christian Stocker  <chregu@phant.ch>

    * ext/domxml/php_domxml.c:
    shite :) too much WS fixes. leave the licence as it was...

    * ext/domxml/php_domxml.c: - WS fixes (replaced "    " by \t)

2002-01-18  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB/STATUS
      pear/DB/odbc.php:
    added affectedRows() and test in numRows() if the backend
    is capable of not to return this info

2002-01-18  Christian Stocker  <chregu@phant.ch>

    * ext/domxml/php_domxml.c:
    - added optional parameters format and level for domxml_dump_node()

    * ext/domxml/php_domxml.c
      ext/domxml/php_domxml.h: - added macro DOMXML_PARAM_ONE
    - added function domxml_dump_node($doc,$node). Dumps a node plus all
      children into a string. (chregu)

    * ext/domxml/php_domxml.h
      ext/domxml/php_domxml.c:
    - Added function domxml_node_get_content() (chregu)

    * ext/domxml/config.m4
      ext/domxml/php_domxml.c
      ext/domxml/php_domxml.h: - added DOMXML_PARAM_THREE macro
    - renamed domxml_dumpmem to domxml_dump_mem, added alias for
      domxml_dumpmem
    - domxml_has_attributes was missing in in zend_function_entry
    - added function domxml_dump_file($filename,[$compression]). Dumps XML to
      a file and uses compression, if specified (chregu)
    - added exslt integration (see http://exslt.org for details). To be
      configured with --with-dom-exslt[=DIR] (and --with-dom-xslt) (chregu, jaroslaw)

2002-01-18  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * README.CVS-RULES: Fix typo

2002-01-17  Adam Dickmeiss  <adam@indexdata.dk>

    * ext/yaz/php_yaz.c
      ext/yaz/php_yaz.h:
    New function yaz_es_result: Z395.0 Extended Services Result.

2002-01-17  Ilia Alshanetsky  <ilia@prohost.org>

    * ext/shmop/shmop.c:
    Fixed shmop_read to append \0 to returned string in shmop_read to eliminate Zend warnings

2002-01-17  Thies C. Arntzen  <thies@thieso.net>

    * ext/session/session.c:
    guys, shoot me if i'm wrong, but when we have set register_globals to off we
    should _not_ touch any global variables at any time, right? so all session
    register/unregister should only work on $HTTP_SESSION_VARS and $_SESSION. this
    patch fixes at least one spot where we were touching globals even with
    register_globals set to off.

    * ext/oci8/oci8.c:
     - Added 3 new optional parameters to OCIFetchStatement(). They control
       the number of rows to skip at the beginning of the cursor, the
       maximun numer of rows that should be fetched and the format of the
       returned array. 

2002-01-17  Sterling Hughes  <sterling@designmultimedia.com>

    * NEWS: Fix attribution, its Petr's patch, not mine :)

    * NEWS: Little cleanup, add information about Sablotron 0.8

    * ext/xslt/config.m4: Update for Sablotron .8

2002-01-17  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB/pgsql.php: Test for results in _pgFieldFlags (thanks Brian Abent
    <brian@onlineinfo.net>)

2002-01-17  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/domxml/config.m4:
    Use libxml2 header if there are older version. Reported by <jwagoner@wlion.com>

2002-01-17  Jaroslaw Kolakowski  <J.Kolakowski@students.mimuw.edu.pl>

    * ext/domxml/php_domxml.c
      ext/domxml/php_domxml.h: Added XsltStylesheet class with methods:
    - domxml_xslt_stylesheet(string),
    - domxml_xslt_stylesheet_doc(DomDocument),
    - domxml_xslt_stylesheet_file(filename),
    - process(DomDocument,parameters array) - previously domxml_xslt_process().

2002-01-16  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/session/session.c: Export php_session_register_module/serializer

2002-01-16  Rasmus Lerdorf  <rasmus@php.net>

    * ext/snmp/config.m4: Fix typo

2002-01-16  Marc Boeren  <M.Boeren@guidance.nl>

    * ext/dbx/dbx_mysql.c:
    mysql_db_query is deprecated, fixed by using mysql_select_db and
    mysql_query (Mc).

2002-01-16  Bertrand Mansion  <bmansion@mamasam.com>

    * pear/HTML/Table.php: Changes by ReneÌ Jensen :
    - Remove duplicate test
    - Nicer html output for nested table level comment.

2002-01-16  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/session/php_session.h:
    Export php_session_register_module/serializer.

2002-01-16  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB/tests/driver/15quote.phpt: add quote data test

2002-01-15  Andrei Zmievski  <andrei@ispi.net>

    * ext/pcre/php_pcre.c
      NEWS: - Fixed a bug with matching string containing null bytes.

2002-01-14  Chris Jarecki  <zenderx@ipro.pl>

    * ext/domxml/php_domxml.c: - using macro in xpath_register_ns()
    - fixed protos in xpath functions

2002-01-14  Martin Jansen  <mail@martin-jansen.de>

    * pear/Date/Calc.php: * Fix for bug #15032.

2002-01-14  Stefan Esser  <s.esser@e-matters.de>

    * main/SAPI.c: MFH: fix for bug #14776

    * main/SAPI.c: fix for bug #14776

2002-01-14  Rui Hirokawa  <rui_hirokawa@ybb.ne.jp>

    * ext/mbstring/mbregex.c:
    fixed an error in mbstring caused by confliction with regex.

2002-01-13  Edin Kadribasic  <edink@proventum.net>

    * acinclude.m4
      sapi/cli/Makefile.in:
    Fixed build in the directory other than $top_srcdir.

2002-01-13  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB/ibase.php:
    Added modifyLimitQuery(). Only avaible for the Firebird syntax
    (ibase(firebird)://user:pass@host/db)
    (contributed by Ludovico Magnocavallo <ludo@sumatrasolutions.com>)

    * pear/DB/tests/db_parsedsn.phpt: Two tests more

    * pear/DB/mysql.php:
    Added support for socket and port options in connect()

    * pear/DB/pgsql.php: better DSN handling

    * pear/DB/tests/db_parsedsn.phpt: Test update

    * pear/DB.php: New DSN "protcocol(protocol_opts)" format support:
    phptype://user:pass@protocol(proto_opts)/database
    ex:
    pgsql://user@unix()/pear
    mysql://user@unix(/path/to/socket)/pear
    pgsql://user:pass@word@tcp(somehost:7777)/pear

2002-01-13  Rasmus Lerdorf  <rasmus@php.net>

    * NEWS: 4.1.1 NEWS entry block was missing from the HEAD tree

2002-01-13  Rui Hirokawa  <rui_hirokawa@ybb.ne.jp>

    * ext/gd/config.m4: fixed some link error of gd's configure.

2002-01-13  Edin Kadribasic  <edink@proventum.net>

    * sapi/cli/Makefile.in
      Makefile.in:
    This should fix cli build when running 'make install' directly.

2002-01-13  Chris Jarecki  <zenderx@ipro.pl>

    * ext/domxml/php_domxml.c
      ext/domxml/php_domxml.h:  - Added xpath_register_ns() function.

2002-01-12  Edin Kadribasic  <edink@proventum.net>

    * sapi/cli/Makefile.in:
    Fixed CLI build when the main SAPI is built as a shered library.

    * Makefile.in
      acinclude.m4
      configure.in
      sapi/cli/.cvsignore
      sapi/cli/Makefile.in
      sapi/cli/config.m4: Modified the build system to always build CLI SAPI.

2002-01-12  Gavin Sherry  <swm@linuxworld.com.au>

    * ext/dba/dba_db2.c:
    My bad. Left some stray debugging code in previous commit.

    * ext/dba/dba_db2.c: See the update to dba_db3.c

    * ext/dba/dba_db3.c:
    This fixes the notorious "mode 'c' fails" bug (see bugs - 10380, 10798, 11732). The bug originates from the fact that mode "c" for db3 sets 'type' to DB_UNKNOWN and mode DB_CREATE when the database already exists. The underlying library raises an error at this logical discrepancy: obviously one cannot create a database of unknown type.

2002-01-12  Vlad Krupin  <phpdevel@echospace.com>

    * ext/imap/php_imap.c:
    Fixed segfault in imap_bodystruct() when called with an invalid message
    number. Now it fails with a warning instead.

2002-01-11  Jaroslaw Kolakowski  <J.Kolakowski@students.mimuw.edu.pl>

    * ext/domxml/php_domxml.c
      ext/domxml/php_domxml.h: Added domxml_node_replace_node() function.

2002-01-11  Rui Hirokawa  <rui_hirokawa@ybb.ne.jp>

    * ext/mbstring/Makefile.in
      ext/mbstring/config.m4
      ext/mbstring/mbregex.c
      ext/mbstring/mbregex.h
      ext/mbstring/mbstring.c
      ext/mbstring/mbstring.h
      ext/mbstring/php_mbregex.c:
    Added multi-byte enabled regex functions. 

2002-01-11  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/standard/file.c:
    - mkdir(): made second (mode) parameter optional, default to 0777
               switched to zend_parse_parameters().

2002-01-11  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/HTTP.php:
    - Added HTTP::head($url) which sends a "HEAD" HTTP command to a server
      and returns the headers as an associative array
    - Call-time pass-by-reference fixes

    * pear/tests/pear1.phpt:
    submit a test that will fail due to php bug #14744

2002-01-10  Frank M. Kromann  <frank@frontbase.com>

    * ext/fbsql/php_fbsql.c
      ext/fbsql/php_fbsql.h:
    Adding functions to get BLOB/CLOB size from a lob_handle.
    Added descriptions on most protos

2002-01-10  Andrei Zmievski  <andrei@ispi.net>

    * NEWS
      ext/standard/array.c:
    Fix the recursive counting, it was broken for associative or non-sequential
    arrays. Also update NEWS file.

2002-01-10  Derick Rethans  <d.rethans@jdimedia.nl>

    * main/main.c:
    - Make an E_NOTICE error type show 'Notice' instead of 'Warning'.

2002-01-10  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/session/mod_mm.c: Fix startup crash

2002-01-10  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/dio/dio.c: - Unified error messages.
    - Improved argument handling in dio_fcntl().

2002-01-10  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/session/mod_mm.c: Revert last commit

2002-01-10  Sascha Schumann  <sascha@schumann.cx>

    * ext/session/mod_mm.c: Improved code for handling PS(save_path)

    Don't MFH before further testing

    * ext/session/mod_mm.c: Ws fix

    * ext/standard/filestat.c:
    (PHP touch) Operate on a stack buffer.. no need for allocating newtime
    on the heap.

    * ext/standard/filestat.c:
    Add three-parameter touch() which enables users to set
    mtime/atime to different values.

2002-01-10  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/pgsql/tests/dropdb.inc: Fix bug in test script

    * ext/session/mod_mm.c: MFH

    * ext/session/mod_mm.c: Make use of save_path for mm file.
    Patch by Henning Schmiedehausen <hps@intermeta.de>
    Closes bug 14808

2002-01-10  Sascha Schumann  <sascha@schumann.cx>

    * ext/session/tests/003.phpt
      ext/session/tests/004.phpt
      ext/session/tests/005.phpt
      ext/session/tests/006.phpt:
    Make these tests succeed with non-standard settings

2002-01-10  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/domxml/php_domxml.h: - Fix compilation. (Christian Stocker)

2002-01-10  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * header: Year update

    * EXTENSIONS: shmop got a new maintainer

2002-01-09  jim winstead  <jimw@apache.org>

    * ext/standard/tests/math/pow.phpt
      NEWS
      ext/standard/basic_functions.c
      ext/standard/math.c
      ext/standard/php_math.h:
    Rename finite/isinf/isnan to more standard is_*() names.

    * ext/standard/type.h
      ext/standard/php_type.h
      ext/standard/type.c
      ext/standard/basic_functions.h
      ext/standard/php_standard.h
      ext/standard/basic_functions.c
      main/rfc1867.c:
    Move type-handling functions into ext/standard/type.c (which had
    a few otherwise unused functions in it).

2002-01-09  Martin Jansen  <mail@martin-jansen.de>

    * pear/XML/Parser.php: * Whitespace.

2002-01-09  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/sockets/sockets.c: - Correct some protos.

2002-01-09  Derick Rethans  <d.rethans@jdimedia.nl>

    * ext/standard/tests/array/count_recursive.phpt
      ext/standard/array.c: - Fix bug introduced in earlier patch

2002-01-09  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/shmop/README
      ext/shmop/php_shmop.h
      ext/shmop/shmop.c: MFH.
    Bugs 10530,10656,14784

2002-01-09  Uwe Steinmann  <Uwe.Steinmann@fernuni-hagen.de>

    * ext/pgsql/pgsql.c: - fixed typo in deprecated functionname

2002-01-09  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/shmop/README
      ext/shmop/config.m4
      ext/shmop/php_shmop.h
      ext/shmop/shmop.c:
    - shmop_open has a new flag for read/write access, 'w'
    - eliminated a segfault when trying to write to a SHM_RDONLY segment
    - eliminated a segfault when an invalid flag which starts with 'a' or 'c' is passed
    - updated creators' email addresses
    - changed error messages to say shmop_* instead of shm* to correspond with new shmop_* function names
    Patch by Ilia Alshanetsky (ilia@prohost.org)

2002-01-09  Jani Taskinen  <sniper@iki.fi>

    * ext/domxml/php_domxml.h: - Fixed compile with older libxml.

    * configure.in: - Fixed the creation of pear-get script.

    * acinclude.m4
      configure.in:
    Reverted Hartmut's patch as it caused more trouble than it solved.

    * ext/readline/config.m4: whitespace

2002-01-08  Jan Lehnardt  <jan@lehnardt.de>

    * pear/HTML/Form.php
      pear/HTML/Page.php:
    fix two warnings, thanks to  Erik Hjortsberg <erik@hysteriskt.nu>

2002-01-08  Jaroslaw Kolakowski  <J.Kolakowski@students.mimuw.edu.pl>

    * ext/domxml/php_domxml.c
      ext/domxml/php_domxml.h: A
    Changed names of functions:
    - htmldoc() to html_doc(),
    - htmldocfile() to html_doc_file(),
    - domxml_htmldumpmem() to domxml_html_dump_mem(),
    - htmldumpmem() to html_dump_mem().

2002-01-08  Jani Taskinen  <sniper@iki.fi>

    * ext/ext_skel:
    Some whitespace fixes (naugthy me :) and make use of PHP_CHECK_LIBRARY
    macro instead of AC_CHECK_LIB.


2002-01-08  Sterling Hughes  <sterling@designmultimedia.com>

    * ext/sockets/sockets.c: Changed proto via Georg Richter's request.

2002-01-08  Jaroslaw Kolakowski  <J.Kolakowski@students.mimuw.edu.pl>

    * ext/domxml/php_domxml.h
      ext/domxml/php_domxml.c
      ext/domxml/config.m4:
    - Added functions: htmldoc(), htmldocfile(), domxml_htmldumpmem().
    - Added error handling for the libxml library.
    - Added preliminary DOM XSLT support:
    -- uses the libxslt library,
    -- operates on DOM objects, not strings,
    -- functions: domxml_xslt_process(), domxml_xslt_version().

2002-01-07  James Cox  <james@awpimajes.com>

    * win32/install.txt:
    browscap url fix, plus removed ^M references. it should look nice on any os.

    * win32/install.txt:
    changed the instructions for php with win32 + apache. Recommending using sapi
    over cgi binary, since cgi binary and apache don't mix well security wise.

2002-01-07  Yasuo Ohgaki  <yohgaki@dd.iij4u.or.jp>

    * ext/session/session.c: MFH

    * NEWS: New PostgreSQL functions

2002-01-07  Egon Schmid  <eschmid@s.netic.de>

    * ext/mbstring/mbstring.c: Fixed some protos.

2002-01-07  Rui Hirokawa  <rui_hirokawa@ybb.ne.jp>

    * ext/mbstring/mbstring.c
      ext/mbstring/mbstring.h:
    added mb_get_info() to get internal settings of mbstring.

2002-01-07  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/domxml/php_domxml.c:
    - Fix domxml_node_unlink_node() proto and return value.

2002-01-07  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/HTTP.php: ws

2002-01-06  Stig Venaas  <venaas@uninett.no>

    * ext/ftp/ftp.c
      ext/ftp/ftp.h: Added IPv6 support

    * main/network.c
      main/php_network.h:
    hostconnect now divides the timeout with no. of addresses. If a connection
    attempt times out, it goes on to the next. Unless each timeout would be
    <5s. Added php_any_addr() that fills out the any address for IPv6 and IPv4.

2002-01-06  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/scripts/pear-get.in
      pear/scripts/pear.in:
    use the new Console_Getopt::readPHPArgv() function to read args

    * pear/Console/Getopt.php:
    Added readPHPArgv() function that will safely read the $argv PHP array
    across different PHP configurations. Will take care on register_globals
    and register_argc_argv ini directives and the new $_SERVER vars

2002-01-06  Edin Kadribasic  <edink@proventum.net>

    * sapi/cli/.cvsignore
      sapi/cli/CREDITS
      sapi/cli/Makefile.in
      sapi/cli/config.m4
      sapi/cli/getopt.c
      sapi/cli/php_cli.c
      sapi/cli/php_getopt.h:    Added CLI (command line intrerface) sapi.

    * main/SAPI.h
      main/main.c:
    Added argc and argv in request_info needed for the new cli sapi.
    Modified registering $argc and $argv to support cli sapi.

2002-01-06  Stig Venaas  <venaas@uninett.no>

    * ext/sockets/php_sockets.h
      ext/sockets/sockets.c
      main/network.c
      main/php_network.h
      configure.in:
    Added some consts for arguments in network.c declarations. Moved
    php_sockaddr_storage to php_network.h and added check for struct
    sockaddr_storage

2002-01-06  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB/tests/driver/setup.inc: pgsql->mysql

2002-01-06  Stig Bakken  <ssb@fast.no>

    * ChangeLog.2001.gz: * archive the 2001 changelog

2002-01-06  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/DB/tests/pgsql/09numrows.phpt
      pear/DB/tests/mysql/09numrows.phpt: this test is no longer here

    * pear/DB/tests/driver/01connect.phpt
      pear/DB/tests/driver/02fetch.phpt
      pear/DB/tests/driver/03simplequery.phpt
      pear/DB/tests/driver/04numcols.phpt
      pear/DB/tests/driver/05sequences.phpt
      pear/DB/tests/driver/06prepexec.phpt
      pear/DB/tests/driver/08affectedrows.phpt
      pear/DB/tests/driver/09numrows.phpt
      pear/DB/tests/driver/10errormap.phpt
      pear/DB/tests/driver/13limit.phpt
      pear/DB/tests/driver/14fetchmode_object.phpt
      pear/DB/tests/driver/README
      pear/DB/tests/driver/connect.inc
      pear/DB/tests/driver/mktable.inc
      pear/DB/tests/driver/setup.inc
      pear/DB/tests/driver/skipif.inc: Multi-Driver portability test

    * pear/DB/tests/errors.inc
      pear/DB/tests/limit.inc
      pear/DB/tests/numrows.inc
      pear/DB/tests/tableinfo.inc: test updates

    * pear/DB/oci8.php: - use count(*) instead of count(a, b)
    - preserve the error handler when testing the sequence
    - missing E_ALL fixes

    * pear/DB/oci8.php: - change the case of column names to lower case when
      "optimize=portability" (use a slow php array_change_key_case() until
      PHP get its C native version avaible. Please do it!)
    - Improved error reporting in connection

2002-01-05  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/domxml/php_domxml.c:
    - Refuse attribute nodes on add_child() and add list destructor for PI
      nodes. (Christian Stocker)
    - Fix append_child() according to add_child().
    - Fix some protos, minor code and warning message cosmetics.

2002-01-05  jim winstead  <jimw@apache.org>

    * ext/standard/tests/strings/wordwrap.phpt
      ext/standard/string.c:
    More tweaking of wordwrap() with the cut parameter set. It was being a
    little too aggressive and cutting words without breaking at spaces
    first. (A couple of tests were incorrect.)

    * ext/standard/tests/strings/wordwrap.phpt
      ext/standard/string.c:
    New memcpy()-based wordwrap() implementation. The simple case
    (single-character break, no forced break) appears to be about 60%
    faster, and there's simply no comparison for non-simple cases with
    non-trivial amounts of text. The old algorithm was O(n^2) (with an
    unfortunately large constant factor) because of the use of strncat(),
    the new one is O(n). Added some more tests, too.

2002-01-05  Thomas V.V.Cox  <cox@idecnet.com>

    * pear/scripts/pear-get.in
      pear/scripts/pear.in: Added check for $argv avaible
    (thanks Michael Härtl <mhaertl@pressline.de>)

2002-01-05  jim winstead  <jimw@apache.org>

    * ext/standard/math.c: Fix the Win32 compile.

2002-01-05  Egon Schmid  <eschmid@s.netic.de>

    * ext/standard/math.c
      ext/standard/basic_functions.c: Fixed some protos.

2002-01-05  jim winstead  <jimw@apache.org>

    * ext/standard/math.c:
    Apparently multi_convert_to_double_ex() didn't quite do what I
    thought. Still need to handle numeric strings.

    * ext/standard/tests/math/pow.phpt
      ext/standard/basic_functions.c
      ext/standard/math.c
      ext/standard/php_math.h:
    Fixed pow(), and added finite(), isinf(), and isnan(). Also fixed
    pow() tests.

    * ext/standard/tests/math/pow.phpt:
    good grief, positive powers of 0 are well-defined. (code fix coming.)

    * ext/standard/reg.c:
    Be more aggressive in making sure that substring matches are valid in
    ereg_replace before trying to use them.

2002-01-05  Zak Greant  <zak@jobvillage.com>

    * ext/standard/tests/array/array_data.txt:
    Surprising how tests can fail when they don't have any supporting data :) Thanks for the catch Jan and Jim

2002-01-04  Jon Parise  <jon@csh.rit.edu>

    * main/rfc1867.c: Nuke unused variable warning (end_arr).

2002-01-04  Stig Venaas  <venaas@uninett.no>

    * ext/ldap/ldap.c
      ext/ldap/php_ldap.h:
    Made ldap_modify() an alias for ldap_mod_replace(). The two were identical.

2002-01-04  jim winstead  <jimw@apache.org>

    * ext/standard/tests/strings/wordwrap.phpt
      ext/standard/string.c:
    Fixed segfault in wordwrap() when wrapping to zero width and using
    multi-character break or trying to force cut (bug #12768, now fails
    and issues a warning because forcing a zero-width cut doesn't make
    sense). Also converted to new paramater-passing API and avoid making
    an extra copy of the return values.

2002-01-04  Sterling Hughes  <sterling@designmultimedia.com>

    * ext/dio/dio.c: Added the O_NOCTTY option, for terminal i/o.

2002-01-04  Hartmut Holzgraefe  <hartmut@six.de>

    * configure.in: first PHP_EXTENSION_LIBS casualty :(

2002-01-04  Ben Mansell  <ben@zeus.com>

    * sapi/fastcgi/fastcgi.c:
    Added log_message function to the FastCGI sapi, so you can see error
    output from scripts

2002-01-04  Hartmut Holzgraefe  <hartmut@six.de>

    * ext/ncurses/config.m4: ncurses is useless in webserver modules

    * ext/xmlrpc/config.m4
      ext/xslt/config.m4: more unquoted messages with kommas fixed

    * ext/mcrypt/config.m4:
    always quote messages with [...], *especialy* when using kommas in the text

    * ext/domxml/php_domxml.c: proto fixes

    * ext/pcntl/config.m4: use predefined function instead of hardcoded test

    * ext/pcntl/pcntl.c
      ext/odbc/velocis.c: proto fix

    * CODING_STANDARDS: small clarification

2002-01-04  Sascha Schumann  <sascha@schumann.cx>

    * genfiles: Remove #line's from var_unserializer.c

2002-01-04  Hartmut Holzgraefe  <hartmut@six.de>

    * ext/readline/config.m4: check for library existance before adding them

    * acinclude.m4: two new check functions for use in config.m4 file

2002-01-04  Sebastian Bergmann  <sb@sebastian-bergmann.de>

    * ext/mssql/.cvsignore: Update .cvsignore.

2002-01-03  Frank M. Kromann  <frank@frontbase.com>

    * ext/mssql/php_mssql.c:
    Making error handling thread safe. Thanks to Paco Ortiz <fjortiz@comunet.es>

2002-01-03  Hartmut Holzgraefe  <hartmut@six.de>

    * acinclude.m4
      configure.in:
    make configure more robust if extensions add libraries without
    checking for their existance first

    old behaviour was to fail on the next library check with misleading
    messages, now configure will work but make will fail with a
    'lib not found' message

    * ext/standard/string.c:
    fix for bug #14832: basename with 2nd parm corrupts source string

2002-01-03  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/ftp/php_ftp.c: - Now use ZE's builtin zend_zval_type_name().

    * ext/domxml/php_domxml.c:
    - domxml_node_add_child(): Perform deep copy before adding child to prevent
      double memory freeing.

    * ext/ftp/php_ftp.c: - FTP_BINARY is more common instead of FTP_IMAGE.

2002-01-03  Thies C. Arntzen  <thies@thieso.net>

    * ext/standard/dir.c: protos fixes by Wolfgang Drews

2002-01-03  Egon Schmid  <eschmid@s.netic.de>

    * ext/ftp/php_ftp.c:
    Please, no punctuation mark at the end of the description.

2002-01-02  Zak Greant  <zak@jobvillage.com>

    * ext/standard/basic_functions.c:
    Adding key_exists alias for array_key_exists, at the request of One-Who-Shall-Not-Be-Named-Because-He-Is-On-Vacation

2002-01-02  Stig Bakken  <ssb@fast.no>

    * pear/DB/tests/db_error.phpt
      pear/DB/tests/db_error2.phpt
      pear/tests/pear_error.phpt: * PEAR.php line number changes again

    * pear/tests/pear_registry.phpt:
    * registry files renamed from .inf to .reg, update test

    * pear/PEAR/Installer.php: * support "pear-get install XML_RPC"

    * pear/Makefile.in
      pear/scripts/.cvsignore
      pear/scripts/pear-get.in
      pear/scripts/pear.in:
    * start splitting "pear" command into "pear" and "pear-get"

    * pear/PEAR/Remote.php: * use new overloading API properly

2002-01-02  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/ftp/php_ftp.c:
    - Corrected proto for ftp_connect() (new optional parameter for initial
      custom timeout).

    * ext/ftp/ftp.c
      ext/ftp/ftp.h
      ext/ftp/php_ftp.c
      ext/ftp/php_ftp.h:
    - Added ftp_set_option(), ftp_get_option() and support for setting a
      custom timeout.

2002-01-02  jim winstead  <jimw@apache.org>

    * ext/gd/gd.c:
    jpeg2wbmp,png2wbmp: fix prototypes; _php_image_convert: simplify argument count checking

2002-01-02  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/ftp/php_ftp.c: - Fixed ftp_fget() and ftp_mkdir() protos.

    * ext/ftp/php_ftp.c: - Corrected proto for ftp_fget().

2002-01-01  Markus Fischer  <mfischer@guru.josefine.at>

    * ext/ftp/php_ftp.c
      ext/ftp/php_ftp.h:
    - Switched to zend_parse_parameters(), unified error/warning messages,
      use real resources instead of integers, adjusted prototypes (hope I got
      them all).

    * NEWS: - Summarize dbase fixes.

2002-01-01  Adam Dickmeiss  <adam@indexdata.dk>

    * ext/yaz/php_yaz.c:
    Removal of non-essential parameters for non-piggyback search.