forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
22681 lines (15774 loc) · 655 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2001-10-26 Andrei Zmievski <[email protected]>
* ext/standard/crc32.c
ext/standard/crypt.c
ext/standard/html.c: Convert to use new parameter parsing API.
2001-10-26 Stig Bakken <[email protected]>
* pear/tests/PEAR.r
pear/tests/PEAR.t
pear/tests/PEAR_Error.r
pear/tests/PEAR_Error.t: removed
2001-10-26 Frank M. Kromann <[email protected]>
* ext/fbsql/php_fbsql.c: Typo in constant naming.
2001-10-26 Harald Radi <[email protected]>
* ext/iisfunc/iisfunc.cpp
ext/dotnet/dotnet.cpp: fix visual studio .net warning
2001-10-26 Frank M. Kromann <[email protected]>
* ext/fbsql/php_fbsql.c: Removed unused code
2001-10-26 Sebastian Bergmann <[email protected]>
* ext/overload/.cvsignore: Add Win32 generated files.
2001-10-26 Andrei Zmievski <[email protected]>
* ext/standard/base64.c: Convert to use new parameter parsing API.
2001-10-26 Thies C. Arntzen <[email protected]>
* ext/xmlrpc/libxmlrpc/base64.c
ext/xmlrpc/php_xmlrpc.h
ext/xmlrpc/xmlrpc-epi-php.c: ZTS fixes
2001-10-26 Stig Bakken <[email protected]>
* pear/PEAR/Remote.php
pear/scripts/pear.in
pear/Makefile.in:
* implemented "pear list-packages", the first sub-command using xmlrpc
2001-10-26 Sterling Hughes <[email protected]>
* sapi/servlet/servlet.c: no need to free these it seems
2001-10-26 Stig Bakken <[email protected]>
* pear/PEAR/Config.php
pear/PEAR/Remote.php
pear/scripts/pear.in
pear/scripts/pearwin.php
pear/Makefile.in:
* PEAR_Config class to maintain system and per-user configuration for
PEAR installations
* PEAR_Remote class to communicate with the backend server (xmlrpc)
* change pear script's option parsing to "-d foo=bar" style
* added -c/-C (user/system config file) and -s/-S (store user/system config)
options
2001-10-25 Martin Jansen <[email protected]>
* pear/HTML/Form.php:
* Improvements to Form.php (by Hakan Kuecuekyilmaz <[email protected]>)
2001-10-25 Thomas V.V.Cox <[email protected]>
* pear/DB/mssql.php:
fix bug in numRows and 0 rows and drop the debug stuff in the error
reporting
2001-10-25 Thies C. Arntzen <[email protected]>
* ext/xmlrpc/xmlrpc-epi-php.c: fix compile
* ext/xmlrpc/libxmlrpc/xml_element.h
ext/xmlrpc/libxmlrpc/xmlrpc.h
ext/xmlrpc/xmlrpc-epi-php.c:
make it compile again and nuke most warnings
2001-10-24 Rasmus Lerdorf <[email protected]>
* main/SAPI.c: Let's suppress this warning if always_populate is enabled
2001-10-24 Jani Taskinen <[email protected]>
* ext/gd/gd.c: MFH
* ext/gd/gd.c: Fixed logic bug introduced by me. Bug: #13796
* ext/hyperwave/hw.c
ext/hyperwave/hg_comm.c: C++ comment pollution removed.
2001-10-24 Uwe Steinmann <[email protected]>
* ext/hyperwave/hw.c:
- switched src and dest in memcpy. This caused a segm fault in hw_new_document_from_file()
* ext/hyperwave/hg_comm.c: - freeing memory wasn't always done right
2001-10-23 Rasmus Lerdorf <[email protected]>
* main/SAPI.c: Ok, now actually make it work - maybe...
* README.PARAMETER_PARSING_API: Minor tweaks
* main/SAPI.c: $HTTP_RAW_POST_DATA was not populated on a missing content-type even when
always_populate_raw_post_data was on - fixed. (Rasmus)
* ext/standard/array.c
ext/standard/basic_functions.c
ext/standard/php_array.h
NEWS:
As suggested on php-dev, array_fill() is probably a better name for this
function.
2001-10-23 Frank M. Kromann <[email protected]>
* ext/mssql/php_mssql.c
ext/mssql/php_mssql.h: Patch for correct handling of DATETIME values.
The patch is implemented with a parameter in php.ini controling if
datetime values are converted with the new or the old method.
Thanks to Michael Bretterklieber <[email protected]>
2001-10-23 Jani Taskinen <[email protected]>
* ext/standard/file.c
ext/standard/file.h
configure.in
ext/standard/basic_functions.c: MFH
* configure.in
ext/standard/basic_functions.c
ext/standard/file.c
ext/standard/file.h: Check that realpath is available. Bug: #9469
* run-tests.php
tests/basic/011.phpt:
Fix these to give correct results even if register_globals=off or
register_argc_argv=off.
* ext/sybase_ct/config.m4: Fixed bug: #13782
* ext/gd/config.m4:
Support also --with-gd (without path). Please test this!
* ext/gd/config.m4:
This patch should reduce the amount of 'bogus' bug reports when people
have two or more different versions of GD library installed.
2001-10-23 Zeev Suraski <[email protected]>
* ext/standard/dl.c: MFH
* ext/standard/dl.c: Prolong the death of dl() for a little while longer.
2001-10-22 Richard Heyes <[email protected]>
* pear/Mail/mimeDecode.php:
Bugfix. Some headers were being returned with a preceding space when they
shouldn't have.
2001-10-22 Rasmus Lerdorf <[email protected]>
* ext/standard/array.c:
Use references instead of making a copy each time in array_init(). About
twice as fast for a high number of elements. 2.80 seconds for the copy
of 1,000,000 elements and 1.39s for the reference version. Need to chunk
it every 62k or so because refcount is a short.
2001-10-22 Andrei Zmievski <[email protected]>
* README.PARAMETER_PARSING_API: Fix-up.
* README.PARAMETER_PARSING_API:
Adding some docs for new parameter parsing API. They really should be more
fleshed out.
* ext/ctype/ctype.c: Remove redundant conversion.
2001-10-22 Hartmut Holzgraefe <[email protected]>
* ext/ctype/ctype.c: new-style parameter parsing
2001-10-22 Sterling Hughes <[email protected]>
* pear/Net/Curl.php: Fix bug 13038
2001-10-22 Andrei Zmievski <[email protected]>
* ext/session/php_session.h: Fix build.
* ext/session/session.c: Fix ZTS build.
* ext/session/session.c:
- Added session_cache_expire() function. (patch from [email protected])
2001-10-22 Jeroen van Wolffelaar <[email protected]>
* ext/standard/tests/versioning/.cvsignore
ext/standard/tests/array/.cvsignore
ext/standard/tests/file/.cvsignore
ext/standard/tests/serialize/.cvsignore
ext/standard/tests/strings/.cvsignore:
.cvsignore now everywhere in ext/standard
* ext/standard/tests/math/001.phpt
ext/standard/tests/math/abs.phpt
ext/standard/tests/math/pow.phpt
ext/standard/tests/math/round.phpt:
MFH (math tests pass now - at least on my system)
* ext/standard/tests/math/001.phpt
ext/standard/tests/math/abs.phpt
ext/standard/tests/math/pow.phpt
ext/standard/tests/math/round.phpt:
Make math tests pass, round & co don't work this way, and there was an error
in expected output
2001-10-22 Jani Taskinen <[email protected]>
* ext/zlib/tests/.cvsignore: Yet another missing .cvsignore file
2001-10-22 Frank M. Kromann <[email protected]>
* pear/DB/fbsql.php: Fixing drop table statement.
Fixing error in tableInfo()
2001-10-22 Jani Taskinen <[email protected]>
* ext/gmp/tests/.cvsignore
ext/mcrypt/tests/.cvsignore
ext/satellite/tests/.cvsignore: Missing .cvsignore files added.
* ext/ctype/tests/001.phpt
ext/ctype/tests/002.phpt:
Use of deprecated stuff and having error_reporting(E_ALL) made the tests fail.
* ext/satellite/tests/003.phpt: Deprecated style used
* main/.cvsignore: Added missing entry.
* ext/standard/tests/time/002.phpt: MFH
* ext/standard/tests/time/002.phpt: Fixed bug: #12617
* ext/iconv/iconv.c
ext/iconv/php_iconv.h: MFH
* ext/iconv/iconv.c
ext/iconv/php_iconv.h: Fixed bug: #12443
* ext/iconv/tests/.cvsignore: Missing .cvsignore file
2001-10-21 Rasmus Lerdorf <[email protected]>
* main/SAPI.c: MFH
* main/SAPI.c:
Check if PCRE support is compiled in and only use the pcre functions if
it is. Otherwise just set the realm to the safe mode user id if it isn't.
2001-10-21 Sterling Hughes <[email protected]>
* ext/xmlrpc/xmlrpc-epi-php.c: MFB
* ext/xmlrpc/xmlrpc-epi-php.c: fix zts build
2001-10-21 Rasmus Lerdorf <[email protected]>
* ext/standard/array.c: Oops, leftover crud
* ext/standard/array.c
ext/standard/basic_functions.c
ext/standard/php_array.h:
Motivated by bug #13607 I wrote up a simple array_init() function that
lets you quickly create an array and initialize each element to a certain
value.
2001-10-21 Jani Taskinen <[email protected]>
* ext/standard/crypt.c
NEWS: MFH
* NEWS: missing entry
* ext/standard/crypt.c
NEWS: Fixed bugs: #13251, #9827, #11363
2001-10-21 Rasmus Lerdorf <[email protected]>
* sapi/apache/php_apache.c: MFH
* ext/pcre/php_pcre.h: MFH
(oops, should have been in one commit)
* main/SAPI.c: MFH
* sapi/apache/php_apache.c:
This made no sense before. Hide Authorization in getallheaders() but
display it from phpinfo()? Ouch!
2001-10-20 Rasmus Lerdorf <[email protected]>
* ext/pcre/php_pcre.h
main/SAPI.c:
Re-instated safe-mode realm mangling as it was in php 2 and 3 albeit
in a somewhat more robust way.
2001-10-20 Andrei Zmievski <[email protected]>
* ext/standard/syslog.c: Fix warning,
2001-10-20 Derick Rethans <[email protected]>
* ext/standard/url.c: - MFH for bug #13413
* ext/standard/url.c: - Fix for bug #13413
2001-10-20 Markus Fischer <[email protected]>
* pear/DB/mssql.php:
'mssql' module works with either mssql or sybase extension
2001-10-19 Andrei Zmievski <[email protected]>
* ext/standard/head.c: convert to use new parameter parsing API.
* ext/standard/levenshtein.c
ext/standard/metaphone.c
ext/standard/soundex.c: Converting to use new parameter parsing API.
2001-10-19 Egon Schmid <[email protected]>
* ext/standard/head.c: Fixed other protos.
2001-10-19 Jason Greene <[email protected]>
* NEWS: Fix news entry
2001-10-19 Egon Schmid <[email protected]>
* ext/standard/uniqid.c: Fixed another proto.
2001-10-19 Andrei Zmievski <[email protected]>
* ext/standard/uniqid.c
ext/standard/syslog.c: Conver to use new parameter parsing API.
2001-10-19 Edin Kadribasic <[email protected]>
* ext/standard/http_fopen_wrapper.c:
Fixed last argument in strlcat() call.
2001-10-19 Derick Rethans <[email protected]>
* ext/com/VARIANT.c: - Fix for bug #13760
2001-10-19 Andrei Zmievski <[email protected]>
* ext/standard/url.c
ext/standard/versioning.c: Convert to use new parameter parsing API.
2001-10-19 Edin Kadribasic <[email protected]>
* ext/standard/http_fopen_wrapper.c:
Merged change strncpy=>strlcpy; strncat=>strlcat into the release brach.
* ext/standard/http_fopen_wrapper.c:
Changed strncpy=>strlcpy; strncat=>strlcat
2001-10-19 Wez Furlong <[email protected]>
* pear/HTML/Form.php: fix call-time pass by reference warnings
2001-10-19 Derick Rethans <[email protected]>
* ext/sablot/config.m4:
- Fix bug in detecting libexpat with the sablotron extension
* ext/zip/zip.c: - MFH
2001-10-19 Stig Bakken <[email protected]>
* NEWS: * another update
2001-10-18 Stig Bakken <[email protected]>
* NEWS: * update NEWS file
2001-10-18 Frank M. Kromann <[email protected]>
* ext/curl/curl.c:
Reverting the last fix for ZTS and adding TSRMLS_FETCH() to make it work.
* ext/curl/curl.dsp:
Adding include path for having curl header and libraries in php_build\curl
* ext/curl/curl.c: Fixing ZTS build on win32
2001-10-18 Sterling Hughes <[email protected]>
* ext/session/session.c:
fix ws issue introduce in my use_trans_sid commit...
* ext/session/session.c: fix formatting, this line really was too long ;)
* ext/session/session.c: force use of the session.use_trans_sid setting
2001-10-18 Sebastian Bergmann <[email protected]>
* php.ini-dist
php.ini-recommended: Add php_overload.dll.
* win32/php_modules.dsw: Add ext/overload to modules workspace.
2001-10-18 Harald Radi <[email protected]>
* ext/com/VARIANT.c: MFH
* ext/com/VARIANT.c: fixed wrong constant definition
* ext/overload/overload.dsp: fix linkage error
2001-10-17 eschmid <[email protected]>
* ext/xmlrpc/xmlrpc-epi-php.c: Fixed some protos.
2001-10-17 fmk <[email protected]>
* ext/fbsql/php_fbsql.c:
Return a warning when fbsql_read_blob or fbsql_read_clob is called with an invalid handle
2001-10-17 Andrei Zmievski <[email protected]>
* ext/pcre/php_pcre.c:
- Fixed a bug in preg_replace() that would change the type of the replacement
array entries to string.
2001-10-17 Stig Bakken <[email protected]>
* ext/xmlrpc/libxmlrpc/xmlrpc.h
ext/xmlrpc/libxmlrpc/xmlrpc.m4
ext/xmlrpc/libxmlrpc/xmlrpc_introspection.c
ext/xmlrpc/libxmlrpc/xmlrpc_introspection.h
ext/xmlrpc/libxmlrpc/xmlrpc_introspection_private.h
ext/xmlrpc/libxmlrpc/xmlrpc_private.h
ext/xmlrpc/CREDITS
ext/xmlrpc/EXPERIMENTAL
ext/xmlrpc/Makefile.in
ext/xmlrpc/config.m4
ext/xmlrpc/libxmlrpc/.cvsignore
ext/xmlrpc/libxmlrpc/Makefile.in
ext/xmlrpc/libxmlrpc/README
ext/xmlrpc/libxmlrpc/acinclude.m4
ext/xmlrpc/libxmlrpc/base64.c
ext/xmlrpc/libxmlrpc/base64.h
ext/xmlrpc/libxmlrpc/encodings.c
ext/xmlrpc/libxmlrpc/encodings.h
ext/xmlrpc/libxmlrpc/libs.mk
ext/xmlrpc/libxmlrpc/queue.c
ext/xmlrpc/libxmlrpc/queue.h
ext/xmlrpc/libxmlrpc/simplestring.c
ext/xmlrpc/libxmlrpc/simplestring.h
ext/xmlrpc/libxmlrpc/system_methods.c
ext/xmlrpc/libxmlrpc/system_methods_private.h
ext/xmlrpc/libxmlrpc/xml_element.c
ext/xmlrpc/libxmlrpc/xml_element.h
ext/xmlrpc/libxmlrpc/xml_to_dandarpc.c
ext/xmlrpc/libxmlrpc/xml_to_dandarpc.h
ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.c
ext/xmlrpc/libxmlrpc/xml_to_xmlrpc.h
ext/xmlrpc/libxmlrpc/xmlrpc.c
ext/xmlrpc/php_config.h.in
ext/xmlrpc/php_xmlrpc.h
ext/xmlrpc/xmlrpc-epi-php.c
ext/xmlrpc/.cvsignore: MFH
2001-10-17 phanto <[email protected]>
* main/internal_functions_win32.c: rename com module entry
* ext/com/php_COM.h: rename module entry
* ext/com/conversion.c: fixed unicode bug
* ext/overload/overload.dsp: win32 project file
2001-10-16 Frank M. Kromann <[email protected]>
* ext/fbsql/php_fbsql.c
ext/fbsql/php_fbsql.h: Adding new functions to retreive LOB data.
fbsql_set_lob_mode() is used to switch from FBSQL_LOB_DIRECT to FBSQL_LOB_HANDLE
when LOBS are retreived as FBSQL_LOB_HANDLE the user must call fbsql_read_blob() or fbsql_read_clob() to get the data.
2001-10-16 Jani Taskinen <[email protected]>
* ext/standard/basic_functions.c: fixed proto
2001-10-16 Edin Kadribasic <[email protected]>
* ext/standard/http_fopen_wrapper.c:
Meged fix for bug #13083 into the release branch.
2001-10-16 Stig Bakken <[email protected]>
* configure.in
main/php_version.h: * fix version number
2001-10-15 Edin Kadribasic <[email protected]>
* ext/standard/http_fopen_wrapper.c:
Fixed bug #13083 in http_fopen_wrapper.c which is now able to handle
non absolute redirects.
2001-10-15 Andrei Zmievski <[email protected]>
* NEWS
ext/overload/.cvsignore
ext/overload/CREDITS
ext/overload/EXPERIMENTAL
ext/overload/Makefile.in
ext/overload/README
ext/overload/config.m4
ext/overload/overload.c
ext/overload/php_overload.h:
Adding user-space object overloading extension.
2001-10-15 Sebastian Bergmann <[email protected]>
* main/php_version.h: Bump version.
2001-10-15 Stig Bakken <[email protected]>
* ext/snmp/snmp.c: MFH
* configure.in: * bump version
* ext/snmp/snmp.c: fix bug #13479
2001-10-15 Frank M. Kromann <[email protected]>
* ext/fbsql/php_fbsql.c: Fixing problem with indirect blobs
2001-10-15 Stig Bakken <[email protected]>
* main/config.w32.h:
* set PHP_EXTENSION_DIR to c:\php4 and change the default
PHP_INCLUDE_PATH to c:\php4\pear
* NEWS: * this line is from php-gtk. hum.
* main/config.w32.h: * fix Windows default include path
* NEWS: * updated version numbers, moved extension version change to 4.1.0
2001-10-14 Egon Schmid <[email protected]>
* CODING_STANDARDS: Fixed some spelling errors.
2001-10-14 Stig Bakken <[email protected]>
* README.EXTENSIONS: MFH
2001-10-14 Markus Fischer <[email protected]>
* pear/DB.php
pear/DB/fbsql.php
pear/DB/ibase.php
pear/DB/ifx.php
pear/DB/msql.php
pear/DB/mssql.php
pear/DB/mysql.php
pear/DB/oci8.php
pear/DB/odbc.php
pear/DB/pgsql.php
pear/DB/sybase.php:
Made error returning on missing extensions consistent across all backends
2001-10-13 Sascha Schumann <[email protected]>
* ext/standard/file.c:
Either sizeof(struct stat) or sizeof f_stat, but not sizeof stat.
2001-10-13 Adam Dickmeiss <[email protected]>
* ext/yaz/php_yaz.c: Fixed thread-safe compile. Thanks to Jani Taskinen.
2001-10-13 Jani Taskinen <[email protected]>
* ext/zip/zip.c: Fixed bug: #13652
* ext/msession/libs.mk: This file is generated.
* ext/gd/gd.c: ws fix.
2001-10-13 Martin Jansen <[email protected]>
* pear/README: * updated email adress
2001-10-13 Adam Dickmeiss <[email protected]>
* ext/yaz/php_yaz.c: Fix backwards source compatibility.
2001-10-13 Martin Jansen <[email protected]>
* pear/scripts/pear.bat:
* fixed problem with copyright header on some systems.
2001-10-13 Richard Heyes <[email protected]>
* pear/Mail/mimePart.php: Initial commit of Mail_mimePart class
2001-10-12 Martin Jansen <[email protected]>
* pear/scripts/pear.bat: * streamlined the copyright header
* changed path names in pear.bat to more typical values
2001-10-12 Alexander Merz <[email protected]>
* pear/scripts/pear.bat: typo
* pear/scripts/pear.bat
pear/scripts/pearwin.php: win version of pear the pear script
2001-10-12 Sterling Hughes <[email protected]>
* ext/zip/zip.c: revert removal of zend_parse_parameters and properly use
zend_parse_parameters (ie zval * instead of zval **).
* ext/zip/zip.c:
fix segv's, zend_parse_parameters seems not to be able to handle
resources.
2001-10-12 Stig Bakken <[email protected]>
* sapi/caudium/caudium.c
sapi/isapi/php4isapi.c
sapi/pi3web/pi3web_sapi.c
sapi/roxen/roxen.c
sapi/aolserver/aolserver.c
sapi/apache2filter/php_functions.c:
* fix module struct in rest of sapi modules
* sapi/aolserver/aolserver.c
sapi/apache2filter/php_functions.c
sapi/caudium/caudium.c
sapi/isapi/php4isapi.c
sapi/pi3web/pi3web_sapi.c
sapi/roxen/roxen.c: MFH
2001-10-12 Alexander Merz <[email protected]>
* pear/Experimental/System.php: fix phpdoc
2001-10-12 Thies C. Arntzen <[email protected]>
* sapi/apache/php_apache.c: MFH
* sapi/apache/php_apache.c: make it work again
2001-10-12 Jani Taskinen <[email protected]>
* ext/crack/config.m4: MFH
* ext/crack/config.m4: Fixed bug: #13556
2001-10-11 Stig Bakken <[email protected]>
* ext/zlib/zlib.c
ext/zip/zip.c
ext/xslt/sablot.c
ext/yaz/php_yaz.c
ext/yp/yp.c
ext/xml/xml.c
ext/vpopmail/php_vpopmail.c
ext/wddx/wddx.c
ext/sysvshm/sysvshm.c
ext/sysvsem/sysvsem.c
ext/sybase/php_sybase_db.c
ext/sybase_ct/php_sybase_ct.c
ext/swf/swf.c
ext/standard/basic_functions.c
ext/standard/info.c
ext/snmp/snmp.c
ext/snmp/winsnmp.c
ext/sockets/sockets.c
ext/skeleton/skeleton.c
ext/shmop/shmop.c
ext/session/mod_mm.c
ext/session/session.c
ext/sablot/sablot.c
ext/satellite/php_orbit.c
ext/readline/readline.c
ext/recode/recode.c
ext/pspell/pspell.c
ext/qtdom/qtdom.c
ext/printer/printer.c
ext/posix/posix.c
ext/pfpro/pfpro.c
ext/pgsql/pgsql.c
ext/pdf/pdf.c
ext/pcre/php_pcre.c
ext/ovrimos/ovrimos.c
ext/pcntl/pcntl.c
ext/oracle/oracle.c
ext/odbc/velocis.c
ext/openssl/openssl.c
ext/odbc/php_odbc.c
ext/oci8/oci8.c
ext/ncurses/ncurses.c
ext/notes/php_notes.c
ext/muscat/muscat.c
ext/mysql/php_mysql.c
ext/mssql/php_mssql.c
ext/mnogosearch/php_mnogo.c
ext/msql/php_msql.c
ext/mcrypt/mcrypt.c
ext/mhash/mhash.c
ext/ming/ming.c
ext/mcal/php_mcal.c
ext/mailparse/mailparse.c
ext/mbstring/mbstring.c
ext/ldap/ldap.c
ext/java/java.c
ext/ircg/ircg.c
ext/ingres_ii/ii.c
ext/interbase/interbase.c
ext/informix/ifx.ec
ext/iisfunc/setup.c
ext/imap/php_imap.c
ext/icap/php_icap.c
ext/iconv/iconv.c
ext/gmp/gmp.c
ext/hyperwave/hw.c
ext/gettext/gettext.c
ext/gd/gd.c
ext/fribidi/fribidi.c
ext/ftp/php_ftp.c
ext/fdf/fdf.c
ext/filepro/filepro.c
ext/fbsql/php_fbsql.c
ext/dotnet/dotnet.cpp
ext/exif/exif.c
ext/domxml/php_domxml.c
ext/dbplus/dbplus.c
ext/dbx/dbx.c
ext/dba/dba.c
ext/dbase/dbase.c
ext/cyrus/cyrus.c
ext/db/db.c
ext/cybercash/cybercash.c
ext/cybermut/cybermut.c
ext/ctype/ctype.c
ext/curl/curl.c
ext/crack/crack.c
ext/cpdf/cpdf.c
ext/com/COM.c
ext/calendar/calendar.c
ext/ccvs/ccvs.c
ext/bcmath/bcmath.c
ext/bz2/bz2.c
ext/aspell/aspell.c: MFH
* ext/zip/zip.c
ext/zlib/zlib.c
ext/yaz/php_yaz.c
ext/yp/yp.c
ext/xmlrpc/xmlrpc-epi-php.c
ext/xslt/sablot.c
ext/xml/xml.c
ext/sysvshm/sysvshm.c
ext/vpopmail/php_vpopmail.c
ext/wddx/wddx.c
ext/sybase_ct/php_sybase_ct.c
ext/sysvsem/sysvsem.c
ext/sybase/php_sybase_db.c
ext/standard/info.c
ext/swf/swf.c
ext/standard/basic_functions.c
ext/snmp/winsnmp.c
ext/sockets/sockets.c
ext/shmop/shmop.c
ext/skeleton/skeleton.c
ext/snmp/snmp.c
ext/session/mod_mm.c
ext/session/session.c
ext/recode/recode.c
ext/sablot/sablot.c
ext/satellite/php_orbit.c
ext/qtdom/qtdom.c
ext/readline/readline.c
ext/printer/printer.c
ext/pspell/pspell.c
ext/posix/posix.c
ext/pfpro/pfpro.c
ext/pgsql/pgsql.c
ext/pdf/pdf.c
ext/pcre/php_pcre.c
ext/pcntl/pcntl.c
ext/ovrimos/ovrimos.c
ext/oracle/oracle.c
ext/openssl/openssl.c
ext/odbc/velocis.c
ext/odbc/php_odbc.c
ext/notes/php_notes.c
ext/oci8/oci8.c
ext/ncurses/ncurses.c
ext/mysql/php_mysql.c
ext/mssql/php_mssql.c
ext/muscat/muscat.c
ext/msql/php_msql.c
ext/msession/msession.c
ext/mnogosearch/php_mnogo.c
ext/ming/ming.c
ext/mhash/mhash.c
ext/mcal/php_mcal.c
ext/mcrypt/mcrypt.c
ext/mbstring/mbstring.c
ext/ldap/ldap.c
ext/mailparse/mailparse.c
ext/java/java.c
ext/ircg/ircg.c
ext/interbase/interbase.c
ext/ingres_ii/ii.c
ext/informix/ifx.ec
ext/imap/php_imap.c
ext/iisfunc/setup.c
ext/icap/php_icap.c
ext/iconv/iconv.c
ext/hyperwave/hw.c
ext/gettext/gettext.c
ext/gmp/gmp.c
ext/gd/gd.c
ext/fribidi/fribidi.c
ext/ftp/php_ftp.c
ext/filepro/filepro.c
ext/fdf/fdf.c
ext/fbsql/php_fbsql.c
ext/dotnet/dotnet.cpp
ext/exif/exif.c
ext/domxml/php_domxml.c
ext/dbx/dbx.c
ext/dbase/dbase.c
ext/dbplus/dbplus.c
ext/dba/dba.c
ext/cyrus/cyrus.c
ext/db/db.c
ext/cybercash/cybercash.c
ext/cybermut/cybermut.c
ext/ctype/ctype.c
ext/curl/curl.c
ext/crack/crack.c
ext/com/COM.c
ext/cpdf/cpdf.c
ext/ccvs/ccvs.c
ext/calendar/calendar.c
ext/bz2/bz2.c
README.EXTENSIONS
ext/aspell/aspell.c
ext/bcmath/bcmath.c:
* zend_module_entry change: apino, debug and zts are moved first,
see README.EXTENSIONS file for upgrade help.
Introduced extension version numbers
* pear/DB/odbc.php
pear/XML/Parser.php
pear/tests/pear_versioncmp.phpt
pear/PEAR.php: MFH: phpVersionIs -> version_compare
* pear/DB/odbc.php
pear/PEAR.php
pear/XML/Parser.php
pear/tests/pear_versioncmp.phpt:
* replaced PEAR::phpVersionIs with version_compare
* win32/php4dll.dsp
win32/php4dllts.dsp: MFH: add versioning files
2001-10-11 Thomas V.V.Cox <[email protected]>
* pear/Experimental/System.php: typo (thanks Alex Merz for testings)
2001-10-11 Stig Bakken <[email protected]>
* NEWS: * version_compare() is included from 4.0.7
* NEWS: * add note about version_compare()
* ext/standard/php_versioning.h
ext/standard/tests/versioning/version_compare.phpt
ext/standard/versioning.c
ext/standard/basic_functions.c: MFH
* ext/standard/basic_functions.c
ext/standard/php_versioning.h
ext/standard/tests/versioning/version_compare.phpt
ext/standard/versioning.c:
* remove version_{lt,le,gt,ge,eq} functions, added a third optional
parameter to version_compare doing the same thing
* ext/standard/Makefile.in: MFH
* pear/tests/pear_error.phpt: * updated line numbers
* ext/standard/tests/versioning/version_compare.phpt: MFH: versioning test
* ext/standard/php_standard.h: MFH
* ext/iconv/tests/001.phpt: MFH test fix
* ext/iconv/tests/001.phpt: * make test pass
2001-10-11 Mark L. Woodward <[email protected]>
* ext/msession/README
ext/msession/config.m4
ext/msession/msession.c: Allow msession to build without ext/session
2001-10-10 Frank M. Kromann <[email protected]>
* ext/fbsql/php_fbsql.c:
Changed return value for BLOB/CLOB values to a string. and returning false if no handle is created.
2001-10-10 Stig Bakken <[email protected]>
* ext/standard/basic_functions.c
ext/standard/php_versioning.h
ext/standard/versioning.c: MFH: version_compare & friends
2001-10-10 Thomas V.V.Cox <[email protected]>
* pear/PEAR/Common.php:
fix a problem with the propagation of baseinstalldir and role
2001-10-10 Sergey Kartashoff <[email protected]>
* ext/mnogosearch/php_mnogo.c:
- Make UDM_PARAM_ISPELL_PREFIXES work under mnogosearch-3.2.x (gluke)
- Make UDM_PARAM_ISPELL_PREFIXES work under mnogosearch-3.2.x (gluke)
2001-10-10 Stig Bakken <[email protected]>
* sapi/apache/config.m4: * fix default path in configure help text
* ext/standard/basic_functions.c:
* added function entries for version_{lt,le,gt,ge,eq}
* ext/standard/php_versioning.h
ext/standard/versioning.c:
Added version_{lt,le,gt,ge,eq} functions
2001-10-10 Frank M. Kromann <[email protected]>
* ext/fbsql/php_fbsql.c
ext/fbsql/php_fbsql.h: Adding support for BLOB and CLOB
2001-10-09 Stig Bakken <[email protected]>
* pear/Makefile.in
pear/XML/RPC.php:
* include the PEAR version of usefulinc's xmlrpc library in this release
too, with security fix (in case people overwrite their old installation)
* pear/scripts/phptar.in
pear/tests/pear_error.phpt
pear/tests/pear_versioncmp.phpt
pear/Net/Socket.php
pear/PEAR/Common.php
pear/PEAR/Installer.php
pear/PEAR/Packager.php
pear/PEAR/WebInstaller.php
pear/XML/Parser.php
pear/Math/Fraction.php
pear/Math/Util.php
pear/Mail/mime.php
pear/Mail/mimeDecode.php
pear/Mail/smtp.php
pear/HTML/Menu.php
pear/HTML/Menu_Browser.php
pear/HTML/Page.php
pear/Mail/RFC822.php
pear/File/Find.php
pear/HTML/Form.php
pear/DB/tests/pgsql/004.phpt
pear/DB/tests/pgsql/005.phpt
pear/DB/tests/pgsql/006.phpt
pear/DB/tests/pgsql/007.phpt
pear/DB/tests/pgsql/008.phpt
pear/DB/tests/pgsql/009.phpt
pear/DB/tests/pgsql/011.phpt