forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
10342 lines (7417 loc) · 270 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
2003-04-07 Jani Taskinen <[email protected]>
* NEWS:
Removed entry that is in the PHP_4_3 branch..
* NEWS:
reorder
* (PHP_4_3)
NEWS:
BFN
2003-04-07 Sara Golemon <[email protected]>
* NEWS
ext/standard/http_fopen_wrapper.c:
Introduce support for context options 'method', 'header', 'content'
2003-04-06 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS:
BFN
* (PHP_4_3)
ext/standard/datetime.c:
MFH: Fixed bug #23071 (when DST in effect, date("T") crashed PHP)
* ext/standard/datetime.c:
Fixed bug #23071 (when DST in effect, date("T") crashed PHP)
2003-04-06 Marcus Boerger <[email protected]>
* .gdbinit:
Support for ZTS
2003-04-06 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
.gdbinit:
MFH(r-1.5): improved zmemcheck macro so it displays the size of each memory
block too.
* .gdbinit:
Improved zmemcheck macro so it displays the size of each memory block too.
* (PHP_4_3)
.gdbinit:
MFH(r-1.4): improved readability of zmemcheck output
* .gdbinit:
Improved readability of zmemcheck output
* .gdbinit:
Added zmemcheck macro, which may help you examine the memory blocks being
handled by the memory manager.
2003-04-06 Jani Taskinen <[email protected]>
* NEWS:
reorder
2003-04-05 Marcus Boerger <[email protected]>
* ext/gd/gd.c:
Collate version handling and bump up version (noticed by Peter Neuman)
2003-04-05 Christian Stocker <[email protected]>
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h:
Useful for adding and parsing (well-balanced) document fragments.
- Bumped up API version number
2003-04-05 Jani Taskinen <[email protected]>
* configure.in:
--enable-all is not useful at all, removed from help
* ext/sockets/php_sockets.h:
Better ifdef it out here too
2003-04-05 Sara Golemon <[email protected]>
* ext/openssl/xp_ssl.c:
Debug watches probably don't belong in CVS.
2003-04-05 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
NEWS:
GD news.
* ext/gd/libgd/gd.c
ext/gd/libgd/gd.h
ext/gd/libgd/gd_gd.c
ext/gd/libgd/gd_gd2.c
ext/gd/libgd/gd_io.h
ext/gd/libgd/gd_jpeg.c
ext/gd/libgd/gd_png.c
ext/gd/libgd/gd_topal.c
ext/gd/libgd/gdcache.c
ext/gd/libgd/gdcache.h
ext/gd/libgd/gdft.c
ext/gd/libgd/gdkanji.c:
Syncronized bunbled GD library with gd 2.0.12
2003-04-05 Marcus Boerger <[email protected]>
* run-tests.php:
Include ldd output
2003-04-05 Sascha Schumann <[email protected]>
* php.ini-dist
php.ini-recommended:
dividend -> divisor
* ext/session/php_session.h
ext/session/session.c:
dividend -> divisor
Submitted by: Jesus M. Castagnetto <[email protected]>
2003-04-05 Brian France <[email protected]>
* ext/curl/multi.c:
Added HAVE_CONFIG_H check so the phpize build method works
2003-04-05 Sara Golemon <[email protected]>
* main/streams/xp_socket.c:
Add IPv6 support to stream_socket_client/server()
2003-04-05 Pierre-Alain Joye <[email protected]>
* pear/package-PEAR.xml:
what? maintainer is not a valid role :)
2003-04-04 Wez Furlong <[email protected]>
* ext/standard/streamsfuncs.c:
Warning fix
2003-04-04 Sara Golemon <[email protected]>
* ext/standard/streamsfuncs.c:
User shouldn't have to initialize this pass-by-ref parameter
2003-04-04 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
ext/sockets/config.m4
ext/sockets/sockets.c:
MFH: added check for struct cmsghdr. now sockets extension can be built
under cygwin
2003-04-04 Jani Taskinen <[email protected]>
* ext/rpc/java/config.m4:
- Fixed bug #22944 (--with-java "make install" fails)
2003-04-04 Sterling Hughes <[email protected]>
* CODING_STANDARDS:
both these entries are bad, and were never agreed upon.
assert() usage is a controversial concept at best.
docref() is something quite a few of us strong disagree with. suspending
this until further discussion.
2003-04-04 Jani Taskinen <[email protected]>
* (PHP_4_3)
ext/curl/curl.c:
Fix bug #23048, CURLOPT_ENCODING is not always available
2003-04-04 Sterling Hughes <[email protected]>
* ext/curl/multi.c:
forgot to commit this.
2003-04-04 Jani Taskinen <[email protected]>
* ext/gd/config.m4:
Check that t1lib has T1_StrError
* configure.in
ext/sockets/config.m4:
- Checks specific to some extension belong in the extension's config.m4
2003-04-04 Andrei Zmievski <[email protected]>
* main/php.h:
Introduce ZEND_ME() and ZEND_METHOD() macros. Use these for declaring
class methods to avoid name collisions.
2003-04-04 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
ext/sockets/sockets.c:
MFH(r-1.135): fixed memleak in socket_select()
* ext/sockets/sockets.c:
Fixed memleak in socket_select
* configure.in
ext/sockets/sockets.c:
Added cmsghdr check. Now sockets extension can be built under cygwin.
* (PHP_4_3)
TODO_SEGFAULTS:
Sorry, forgot these ones
* (PHP_4_3)
TODO_SEGFAULTS:
renumbering
* (PHP_4_3)
TODO_SEGFAULTS:
segfault busting news
replacing one tab to 4 spaces
* (PHP_4_3)
ext/mbstring/mbfilter.c:
MFH(r-1.55): added missing sanity check, which was causing segfault.
* ext/mbstring/mbfilter.c:
Added missing sanity check, which was causing segfault.
2003-04-04 Wez Furlong <[email protected]>
* ext/standard/streamsfuncs.c:
Simplify and enhance readability.
2003-04-04 Sascha Schumann <[email protected]>
* main/output.c:
Backout Jani's commit to resync branches
2003-04-04 Sara Golemon <[email protected]>
* ext/standard/basic_functions.c
ext/standard/streamsfuncs.c
ext/standard/streamsfuncs.h:
Added stream_get_transports()
* main/streams/streams.c:
Prevent php_stream_get_record from grabbing more than maxlen characters
2003-04-04 Ilia Alshanetsky <[email protected]>
* ext/gd/gd.c:
Might as well disallow 0x0 images.
Thanks Marcus.
2003-04-04 Pierre-Alain Joye <[email protected]>
* pear/package-PEAR.xml:
- Add some releases notes
- Add myself in the maintainer list (stig)
2003-04-04 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS:
Notes about various possible integer overflows in bundled gd library.
* (PHP_4_3)
TODO_SEGFAULTS:
More gd stuff.
* (PHP_4_3)
TODO_SEGFAULTS:
Fixed segv as well as info about new segvs in gd.
2003-04-04 Stig Bakken <[email protected]>
* pear/package-PEAR.xml:
- whip script files where they belong
2003-04-04 Ilia Alshanetsky <[email protected]>
* ext/gd/gd.c:
Fix segfault in imagecopyresized().
2003-04-04 Stig Bakken <[email protected]>
* pear/scripts/pear.sh:
- look for pearcmd.php in the right directory when run from a cvs checkout
* pear/package-PEAR.xml
pear/scripts/pear.sh
pear/scripts/pear_unices:
- rename pear_unices to pear.sh and make it a pure shell script
2003-04-04 Jani Taskinen <[email protected]>
* ext/gd/gd.c:
- Better errors for T1lib.
- Sanity check into imagepsextendfont().
2003-04-03 Stig Bakken <[email protected]>
* pear/package-PEAR.xml:
- pear.in is renamed to pearcmd.php
* pear/package-PEAR.xml
pear/scripts/.cvsignore
pear/scripts/pear.in
pear/scripts/pear_unices
pear/scripts/pearcmd.php:
- paj's last Windows install fixes
* pear/scripts/pear.bat:
- use PHP_PEAR_* environment variables (paj)
* pear/PEAR/Frontend/CLI.php:
- disable table borders in output to save width
* pear/OS/Guess.php:
- windows bugfix
* pear/PEAR.php:
- support both error codes and messages in the second parameter to
PEAR::isError()
2003-04-03 Jani Taskinen <[email protected]>
* ext/gd/gd.c:
Use php_error_docref.
2003-04-03 Stig Bakken <[email protected]>
* pear/PEAR/Registry.php:
- remove track_errors ini fiddling, was a PHP bug that should be fixed now
* pear/PEAR/Common.php:
- initialize pkginfo with an empty provides array
2003-04-03 Rasmus Lerdorf <[email protected]>
* ext/exif/exif.c:
MFB
2003-04-03 Marcus Boerger <[email protected]>
* configure.in:
Check for flex version 2.5.4
2003-04-03 Sascha Schumann <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS:
one in socket_select
* (PHP_4_3)
TODO_SEGFAULTS:
augment summary with fixes which predate the list
* (PHP_4_3)
TODO_SEGFAULTS:
add chunk_split
* (PHP_4_3)
TODO_SEGFAULTS:
another one fixed, a new one found
* ext/gd/gd.c:
Fix segfaults in imagecreate/imagecreatetruecolor
* (PHP_4_3)
TODO_SEGFAULTS:
fix
* (PHP_4_3)
TODO_SEGFAULTS:
update regarding dbase extension
2003-04-03 Jani Taskinen <[email protected]>
* main/output.c:
WS & CS fix
2003-04-03 Sara Golemon <[email protected]>
* ext/standard/array.c:
Kludgy fix for floating point drift causing problems like
range(1.0,1.5,0.1) == array(1.0,1.1,1.2,1.3,1.4);
2003-04-03 Sascha Schumann <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS:
Update - we purged the full list\!
* main/output.c:
Add some checks and avoid passing invalid data to call_user_function_ex.
Fixes some heap corruption and allocation of negative amounts of memory.
* ext/standard/basic_functions.c:
Prevent entering of anything but arrays/strings in register_shutdown_func
Noticed by: Jan Schneider
2003-04-03 Rasmus Lerdorf <[email protected]>
* (PHP_4_3)
ext/exif/exif.c:
Clean up the parameter handling here
2003-04-03 Jani Taskinen <[email protected]>
* NEWS:
reorder
2003-04-03 Christian Stocker <[email protected]>
* NEWS:
new domxml_elem_set_attribute_node() should have gone into NEWS, but I
forgot..
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h:
- Added domxml_elem_set_attribute_node() method. (Rob Richards)
2003-04-03 Georg Richter <[email protected]>
* ext/mysqli/mysqli_api.c:
fixed mysqli_prepare_result
* ext/mysqli/tests/047.phpt:
fixed output
2003-04-03 Derick Rethans <[email protected]>
* ext/standard/string.c
ext/standard/string.c:
- CS
2003-04-03 Jani Taskinen <[email protected]>
* ext/bcmath/bcmath.c:
Another CS fix.
* ext/standard/basic_functions.c:
CS fix
2003-04-03 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS:
Unable to reproduce..
* (PHP_4_3)
TODO_SEGFAULTS:
segfault busting news
* (PHP_4_3)
ext/xml/xml.c:
MFH(r-1.117): fixed segfault in xml_parser_create()
* ext/xml/xml.c:
Fixed segfault in xml_parser_create()
2003-04-03 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
NEWS:
Bug fixing news.
* (PHP_4_3)
ext/ftp/php_ftp.c:
Fixed bug #23004 (When ftp_close() is called, sent QUIT to the ftp server)
2003-04-03 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
main/output.c:
MFH(r-1.152): fixed memleak in output buffering facility
* main/output.c:
Fixed memleak in output buffering facility
* (PHP_4_3)
TODO_SEGFAULTS:
Removed i18n_convert() from the entries because that is an alias for
mb_convert_encoding()
2003-04-03 Rasmus Lerdorf <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS:
Update
2003-04-03 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
ext/mbstring/php_mbregex.c:
MFH(r-1.38): fixed segfault in mb_ereg_match()
* ext/mbstring/php_mbregex.c:
Fixed segfault in mb_ereg_match()
* (PHP_4_3)
ext/mbstring/php_mbregex.c:
MFH(r-1.37): fixed lots of crashes in mbregex
* ext/mbstring/php_mbregex.c:
Fixed lots of crashes in mbregex.
2003-04-02 Rasmus Lerdorf <[email protected]>
* ext/bcmath/bcmath.c:
MFB: Check for negative precision
* (PHP_4_3)
TODO_SEGFAULTS
ext/bcmath/bcmath.c:
Negative precision makes no sense, so check for that, but let the memory
manager error out on huge non-negative precision args
* ext/standard/basic_functions.c:
MFB: Fix unregister_tick_function crash
* (PHP_4_3)
TODO_SEGFAULTS
ext/standard/basic_functions.c:
Fix unregister_tick_function crash
2003-04-02 Georg Richter <[email protected]>
* ext/mysqli/tests/028.phpt
ext/mysqli/tests/042.phpt:
fixed expected output
2003-04-02 Rasmus Lerdorf <[email protected]>
* ext/exif/exif.c:
MFB: Get rid of bogus dtors
* (PHP_4_3)
ext/exif/exif.c:
Get rid of bogus dtors
* ext/standard/string.c:
MFB: Fix the setlocale() segfault
* (PHP_4_3)
TODO_SEGFAULTS
ext/standard/string.c:
Fix the setlocale() segfault
2003-04-02 Marcus Boerger <[email protected]>
* configure.in:
For now only bison 1.28, 1.35 and 1.75 are working properly
2003-04-02 Derick Rethans <[email protected]>
* sapi/apache/.cvsignore:
- Update for new name
2003-04-02 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS:
BFN
2003-04-02 Sterling Hughes <[email protected]>
* ext/curl/multi.c:
add the ability for curl_multi_info to introspect the handles.
2003-04-02 Colin Viebrock <[email protected]>
* ext/standard/basic_functions.c
ext/standard/info.c
ext/standard/info.h:
fixes for logo guid functions
* main/logos.h:
oops ... committed the wrong one
* main/logos.h:
fix logo (outline around letters)
2003-04-02 Edin Kadribasic <[email protected]>
* (PHP_4_3)
NEWS:
BFN
* ext/ldap/ldap.dsp:
Fixed bug #23008
2003-04-02 Christian Stocker <[email protected]>
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.c:
Patch for Bug #22774 by Rob Richards
2003-04-02 Sara Golemon <[email protected]>
* tests/strings/002.phpt:
Avoid having output_buffering cause this test to improperly fail.
* ext/standard/tests/file/userfilters.phpt:
New test for userfilters rewrite
2003-04-02 Ilia Alshanetsky <[email protected]>
* ext/standard/string.c:
Fixed possible integer overflow in str_repeat().
2003-04-02 Jay Smith <[email protected]>
* (PHP_4_3)
ext/pgsql/pgsql.c
ext/pgsql/php_pgsql.h:
MFH
2003-04-01 Jay Smith <[email protected]>
* ext/pgsql/pgsql.c
ext/pgsql/php_pgsql.h:
Fix 'timestamp without timezone', too.
2003-04-01 Marcus Boerger <[email protected]>
* ext/pgsql/pgsql.c:
Fix 'time with timezone', too
2003-04-01 Jay Smith <[email protected]>
* ext/pgsql/pgsql.c:
Fixed bug #23009 (pg_select with timestamp)
2003-04-01 Rasmus Lerdorf <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS
ext/standard/array.c:
Arbitrarily limit array_pad() to only do 1 million elements at a time.
Probably still too high, but it solves the segfault for now.
2003-04-01 Moriyoshi Koizumi <[email protected]>
* ext/standard/tests/filters/bug22538.phpt:
Fixed bogus test
2003-04-01 Sascha Schumann <[email protected]>
* (PHP_4_3)
main/output.c:
s/0/FAILURE/
* main/output.c:
Fix an uninitialized read, default to FAILURE
* (PHP_4_3)
main/output.c:
Fix an uninitialised read for ob_start(array())
2003-04-01 Rasmus Lerdorf <[email protected]>
* ext/dbase/dbf_head.c
ext/exif/exif.c
ext/standard/array.c:
MFB
* (PHP_4_3)
TODO_SEGFAULTS
ext/dbase/dbf_head.c:
Argh!!! I guess nobody has ever looked at this code.
2003-04-01 Moriyoshi Koizumi <[email protected]>
* ext/standard/tests/filters/bug22538.phpt:
Added a test case for bug #22538
* ext/mbstring/php_mbregex.c:
oops
* ext/mbstring/php_mbregex.c:
Reverted the last patch; the problem is elsewhere..
2003-04-01 Rasmus Lerdorf <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS
ext/exif/exif.c:
Fix exif crashes
2003-04-01 Moriyoshi Koizumi <[email protected]>
* ext/mbstring/php_mbregex.c:
Fixed crash that occurs due to an abused persistent hashtable.
2003-04-01 Rasmus Lerdorf <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS:
Update (not fixed in HEAD because the API for this function needs to
change in PHP5. It is moronic the way it is now)
* (PHP_4_3)
ext/sockets/sockets.c:
Ok, really fix socket_iovec_alloc() this time
2003-04-01 Jani Taskinen <[email protected]>
* NEWS:
crap removal
* (PHP_4_3)
NEWS:
BFN
* (PHP_4_3)
configure.in:
MFH: Fixed bug #22987 (missing perror() check in configure)
* configure.in:
Fixed bug #22987 (missing perror() check in configure)
2003-04-01 Sascha Schumann <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS:
more insight re. ob_start bug
* (PHP_4_3)
TODO_SEGFAULTS:
The ob_start issue is reproducible.
2003-04-01 Moshe Doron <[email protected]>
* ext/standard/tests/strings/bug22904.phpt:
oops
* ext/standard/tests/strings/bug22904.phpt:
revert due the last string.c revert
* ext/standard/string.c:
revert last commit for now
2003-04-01 Sascha Schumann <[email protected]>
* (PHP_4_3)
TODO_SEGFAULTS:
editing
* TODO_SEGFAULTS
TODO_SEGFAULTS:
file TODO_SEGFAULTS was initially added on branch PHP_4_3.
2003-04-01 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
ext/mbstring/mbstring.c:
MFH(r-1.170): fixed crash in mb_convert_encoding() that occurs when a void
array is passed as the third parameter.
* ext/mbstring/mbstring.c:
Fixed crash in mb_convert_encoding() that occurs when a void array is
passed as the third parameter
2003-04-01 Thies C. Arntzen <[email protected]>
* ext/standard/info.c
ext/standard/info.c:
-** empty log message ***
2003-04-01 Sascha Schumann <[email protected]>
* ext/ircg/ircg.c:
Fix segfault, logic and lock issue in ircg_is_conn_alive
* ext/dba/config.m4
ext/dba/config.m4
ext/dba/config.m4:
fix VPATH builds
* ext/standard/basic_functions.c:
Fix segfault in register_shutdown_function
* (PHP_4_3)
acinclude.m4:
No need for shtool
* acinclude.m4:
Don't need shtool
* ext/ircg/ircg.c:
Intermediate commit of relocation map integration
* (PHP_4_3)
ext/standard/file.c
ext/standard/file.c:
Fix segfault in flock()
2003-04-01 Sara Golemon <[email protected]>
* ext/standard/mail.c:
Bug #22962
2003-04-01 Sebastian Bergmann <[email protected]>
* ext/standard/basic_functions.c
ext/standard/basic_functions.h:
Sorry Sterling, but this broke the ZTS build and I'd rather not 'ZTS fix'
an April's Fool joke.
2003-04-01 Sterling Hughes <[email protected]>
* ext/standard/basic_functions.c
ext/standard/basic_functions.h:
Add the landonize() and landonize_url() functions which provide a secure
alternative to the sha1() and sha1_file() functions.
2003-03-31 Moriyoshi Koizumi <[email protected]>
* ext/standard/tests/serialize/001.phpt:
oops
2003-03-31 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS:
BFN & houshold
* NEWS:
Householding..
2003-03-31 Moriyoshi Koizumi <[email protected]>
* main/streams/streams.c:
Fixed bug #22538 (stream filter problem)
2003-03-31 Jani Taskinen <[email protected]>
* (PHP_4_3)
acinclude.m4:
MFH: Fixed bug #22989 (sendmail not found by configure)
* acinclude.m4:
Fixed bug #22989 (sendmail not found by configure)
2003-03-31 Moriyoshi Koizumi <[email protected]>
* ext/standard/tests/serialize/001.phpt:
Fixed test; in ZE2, all the properties used in any methods are populated
at compile time.
2003-03-31 Ilia Alshanetsky <[email protected]>
* main/streams/streams.c:
WS
2003-03-31 Brian France <[email protected]>
* (PHP_4_3)
main/main.c:
Fixes the problem where argv and argc are not populated unless S
is in the variables_order, even if register_argc_argv is on.
2003-03-31 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
ext/imap/php_imap.c:
MFH(r-1.161): fixed proto to sync with the documentation
* ext/imap/php_imap.c:
Fixed proto to sync with the documentation
* (PHP_4_3)
ext/mime_magic/config.m4:
MFH(r-1.10): rearranged search order for the magic file to avoid further
confusions
* ext/mime_magic/config.m4:
Rearranged search order for the magic file to avoid further confusions
2003-03-31 Marcus Boerger <[email protected]>
* main/main.c:
use the correct macro - noticed by Andrei
2003-03-31 Moshe Doron <[email protected]>
* ext/standard/tests/strings/bug22904.phpt:
* ext/standard/string.c:
fix for 22904
2003-03-31 Wez Furlong <[email protected]>
* ext/openssl/openssl.c:
Fix const warning
2003-03-31 David Hill <[email protected]>
* (PHP_4_3)
ext/standard/parsedate.y:
Changing parsedate to be reentrant using pure_parse (Dave)
* (PHP_4_3)
configure.in:
Correcting checking of flex version (Dave)
2003-03-31 Moshe Doron <[email protected]>
* ext/standard/string.c:
2003-03-31 Jani Taskinen <[email protected]>
* ext/gd/gd.c
ext/gd/gd.c
ext/gd/php_gd.h
ext/gd/php_gd.h:
cleanup
2003-03-31 Sascha Schumann <[email protected]>
* (PHP_4_3)
ext/standard/lcg.c
ext/standard/lcg.c:
MFH TS issue, noticed by Sebastian Bergmann
* ext/standard/lcg.c:
TS issue, noticed by Sebastian Bergmann
* ext/standard/lcg.c:
Ensure that the seed function has been called, even if we are used by
another module's request init function.
Noticed by: [email protected]
2003-03-30 Derick Rethans <[email protected]>
* ext/openssl/openssl.c:
- Typo and some whitespace
* ext/openssl/openssl.c:
- Added optional parameter to openssl_sign() to specify the hashing
algorithm to use. (Patch by Scott <[email protected]>)
2003-03-30 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
NEWS:
Bug fixing news.
* ext/gd/libgd/gd.c:
Fixed bug #22965 (Crash in gd lib's ImageFillToBorder()).
2003-03-30 Sascha Schumann <[email protected]>
* sapi/apache/config.m4:
Merge proper -I parameter for APXS builds
2003-03-30 Rasmus Lerdorf <[email protected]>
* (PHP_4_3)
ext/gd/gd.c:
No point calling the RSHUTDOWN hook here unless we are actually going
to do something in it.
2003-03-30 Moriyoshi Koizumi <[email protected]>
* .gdbinit:
Added various gdb macros to examine zval, znode, and HashTable
2003-03-30 Georg Richter <[email protected]>
* ext/mysqli/mysqli_profiler.c:
changed constant name
2003-03-30 Marcus Boerger <[email protected]>
* run-tests.php:
if TEST_PHP_EXECUTABLE=auto then use ./sapi/cli/php
* NEWS:
update
* sapi/cli/php_cli.c:
more ini defaults for error message handling
* main/main.c: