forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
25279 lines (16721 loc) · 750 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
2002-10-21 Jani Taskinen <[email protected]>
* ext/gd/config.m4: Nuke tabs.
* ext/standard/config.m4:
Removed tabs and combined those multiple AC_CHECK_FUNCS calls to one.
2002-10-21 Ilia Alshanetsky <[email protected]>
* ext/standard/link.c: Fixed symlink/link functions on ZTS builds.
Made URL detection in symlink code use php_stream_locate_url_wrapper().
2002-10-21 Jani Taskinen <[email protected]>
* ext/fdf/config.m4: Cleanup. (no tabs here!)
2002-10-21 Wez Furlong <[email protected]>
* ext/standard/file.c
main/php_streams.h
main/streams.c:
Refine stream_select() to work with streams that have data in their read
buffers.
When selecting for read, the streams are examined; if any of them have
pending read data, no actual select(2) call is performed; instead the
streams with buffered data are returned; just like a regular select
call.
Prevent erroneous warning in stream_select when obtaining the fd.
2002-10-21 Sterling Hughes <[email protected]>
* ext/curl/curl.c: no need to double fetch
2002-10-21 Hartmut Holzgraefe <[email protected]>
* sapi/apache/mod_php4.c: this will be handled elsewhere
* ext/fdf/config.m4
ext/fdf/fdf.c
ext/fdf/php_fdf.h: reworked some existing stuff
added some functions suporting stuff that have been added since fdftk 2.0
emulating read from/save to strings by transparently using temp. files
(activeX version of fdftk has this, but not plain C version :( )
* ext/standard/basic_functions.c:
fixed build for getopt_long-less platforms,
removed left-over todo comments
2002-10-21 Jani Taskinen <[email protected]>
* ext/gd/config.m4:
Changed --with-gd to behave same way as --with-mysql does.
2002-10-21 Moriyoshi Koizumi <[email protected]>
* ext/mbstring/tests/mb_detect_encoding.phpt
ext/mbstring/tests/mb_detect_order.phpt
ext/mbstring/tests/mb_ereg.phpt
ext/mbstring/tests/mb_ereg_replace.phpt
ext/mbstring/tests/mb_ereg_search_xxx.phpt
ext/mbstring/tests/mb_http_input.phpt
ext/mbstring/tests/mb_http_output.phpt
ext/mbstring/tests/mb_internal_encoding.phpt
ext/mbstring/tests/mb_output_handler_euc_jp.phpt
ext/mbstring/tests/mb_preferred_mime_name.phpt
ext/mbstring/tests/mb_regex_set_options.phpt
ext/mbstring/tests/mb_split.phpt
ext/mbstring/tests/mb_strcut.phpt
ext/mbstring/tests/mb_strimwidth.phpt
ext/mbstring/tests/mb_strlen.phpt
ext/mbstring/tests/mb_strpos.phpt
ext/mbstring/tests/mb_strwidth.phpt
ext/mbstring/tests/mb_substitute_character.phpt
ext/mbstring/tests/mb_substr.phpt
ext/mbstring/tests/php_gr_jp_10830.phpt
ext/mbstring/tests/simpletest.phpt
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/020.phpt
ext/mbstring/tests/021.inc
ext/mbstring/tests/021.phpt
ext/mbstring/tests/022.inc
ext/mbstring/tests/022.phpt
ext/mbstring/tests/023.inc
ext/mbstring/tests/023.phpt
ext/mbstring/tests/024.inc
ext/mbstring/tests/024.phpt
ext/mbstring/tests/025.inc
ext/mbstring/tests/025.phpt
ext/mbstring/tests/026.inc
ext/mbstring/tests/026.phpt
ext/mbstring/tests/027.inc
ext/mbstring/tests/027.phpt
ext/mbstring/tests/casefold.phpt
ext/mbstring/tests/htmlent.phpt
ext/mbstring/tests/mb_convert_encoding.phpt
ext/mbstring/tests/mb_convert_variables.phpt: Renamed the test cases.
2002-10-21 Hartmut Holzgraefe <[email protected]>
* main/SAPI.c: removed left-over unused variable
2002-10-21 Jon Parise <[email protected]>
* ext/standard/basic_functions.c:
Convert C++ style comments to C style comments.
2002-10-21 Hartmut Holzgraefe <[email protected]>
* ext/standard/php_fopen_wrapper.c:
killed some warnings identified by sebastian
* main/SAPI.c: removed bogus paranoid header checking
* ext/standard/php_fopen_wrapper.c
main/SAPI.c
main/main.c
main/php_content_types.c
main/php_globals.h:
some changes to how request input data (Content-Lenght >0) is handled
- webdav-specific stuff removed (should be handled using httpd.conf
LIMIT or equivalents)
- always_populate_raw_post_data now working on any method, not just
POST (and webdav methods with allow_webdav_methods), when
Content-Length is greater zero
- raw input data is also available using php://input stream,
this way one doesn't have to care about memory_limit
- input data is now always consumed (although maybe ignored,
this fixes we had withproblems with keep-alive connections
* ext/standard/basic_functions.c
ext/standard/config.m4:
getopt() now supports long options on platforms that have getopt_long()
getopt() now working independant of register_argc_argv settings
* build/build.mk: workaround for the "autoconf-cache-bug" workaround
-> don't remove config.nice
2002-10-21 Andrei Zmievski <[email protected]>
* NEWS: Tweak.
2002-10-21 Hartmut Holzgraefe <[email protected]>
* ext/ncurses/php_ncurses.h: ZTS build fix
2002-10-21 Ilia Alshanetsky <[email protected]>
* main/php_globals.h
php.ini-dist
php.ini-recommended
main/main.c:
Fixed bug #16880. Added an ini option max_input_time that allows the user
to specify how much time a script may spend parsing input data (POST, GET, etc..).
2002-10-21 Hartmut Holzgraefe <[email protected]>
* pear/scripts/phpize.in:
fix for #19712 & #19715 -> whitepsace in extension dir name
2002-10-21 Thies C. Arntzen <[email protected]>
* ext/oci8/oci8.c:
2002-10-21 Moriyoshi Koizumi <[email protected]>
* ext/mbstring/mbstring.c: More style fixes...
* ext/iconv/tests/001.phpt
ext/iconv/tests/bug16069.phpt
ext/iconv/tests/translit-failure.phpt
ext/iconv/tests/translit-utf8.phpt: Let them say why they are skipped
* run-tests.php: Fixed typo.
* run-tests.php: \s cannot be used with ereg()
2002-10-21 Sander Roobol <[email protected]>
* run-tests.php: The results of each test should go on a single line
2002-10-21 Derick Rethans <[email protected]>
* run-tests.php: - Stijl polizei
2002-10-21 Melvyn Sopacua <[email protected]>
* ext/xml/tests/007.phpt:
Skip this when strtoupper doesn't behave as expected, because casefolding
depends on this.
* run-tests.php: Adds a 'reason' for skipping a test.
2002-10-21 Jani Taskinen <[email protected]>
* acinclude.m4: remove the remains of that comment.
* acinclude.m4
configure.in
sapi/cgi/config.m4
sapi/cgi/config9.m4:
- Moved CGI specific lines from configure.in to sapi/cgi/config9.m4
which is 'executed' last of the SAPI config.m4's.
- Added --disable-cgi option. (was possible only with above change)
- Made the sed check to not test for the possibly working sed on Solaris
since that would make the test quite useless. (compile would still fail)
* scripts/config-stubs: - Add one 'level' more (0 first, 9 last)
* ext/pdf/config.m4
ext/gd/config.m4
ext/mysql/config.m4
ext/domxml/config.m4:
- Prevent resetting the PHP_*_DIR variables if already set.
2002-10-21 Moriyoshi Koizumi <[email protected]>
* ext/mbstring/mbstring.c: style keisatsu :)
* ext/mbstring/tests/027.inc
ext/mbstring/tests/027.phpt:
Added a new test case to confirm the inconsistent regex behaviour reported
on [email protected] (10830)
* ext/mbstring/mbstring.c: Changed the dafault option for consistency
* ext/mbstring/mbstring.c
ext/mbstring/mbstring.h
ext/mbstring/tests/026.inc
ext/mbstring/tests/026.phpt: Added mb_strtolower() and mb_strtoupper()
* main/streams.c: MFH
2002-10-21 Jani Taskinen <[email protected]>
* ext/odbc/config.m4: Align with other configure --help texts
* ext/standard/tests/file/001.phpt:
There is no point doing this test. Some systems think root can always execute so this is always true.
2002-10-20 Sean Bright <[email protected]>
* README.SELF-CONTAINED-EXTENSIONS: Fix some verbage.
2002-10-20 Jani Taskinen <[email protected]>
* NEWS: Try keep those most important entries as first..
2002-10-20 Moriyoshi Koizumi <[email protected]>
* main/memory_streams.c: style fix
2002-10-20 Ilia Alshanetsky <[email protected]>
* main/streams.c: Fixed incorrect handling of files starting with a .
2002-10-20 Moriyoshi Koizumi <[email protected]>
* ext/mbstring/php_mbregex.c:
Changed mb_regex_set_options() more informative
2002-10-20 Wez Furlong <[email protected]>
* configure.in: Add the actual ftok check for Derick :-)
2002-10-20 Derick Rethans <[email protected]>
* ext/standard/basic_functions.c
ext/standard/ftok.c
ext/standard/php_ftok.h: - Only include ftok() if it is available
* ext/standard/ftok.c
ext/standard/php_ftok.h
ext/standard/basic_functions.c:
- Remove #ifdefs around ftok function so that it is also available when
none of the IPC extensions are enabled.
2002-10-20 Moriyoshi Koizumi <[email protected]>
* ext/mbstring/mbstring.c: ZTS fixes
2002-10-20 Masaki Fujimoto <[email protected]>
* main/main.c
ext/mbstring/mbfilter.c
ext/mbstring/mbstring.c
ext/mbstring/mbstring.h:
fixed highlight related bugs (in case shift_jis input/output filters are enabled)
2002-10-20 Maxim Maletsky <[email protected]>
* ext/oci8/oci8.c: fixed proto: OCIExecute() returns boolean, not integer
2002-10-19 Derick Rethans <[email protected]>
* ext/standard/tests/strings/implode.phpt:
- Hopefully fix test file problems
2002-10-19 Ilia Alshanetsky <[email protected]>
* ext/dio/dio.c: Silence compile warning.
* main/network.c: Silence compile warning, when compiling --with-openssl.
* main/network.c: Fixed a typo.
2002-10-19 Maxim Maletsky <[email protected]>
* ext/oci8/oci8.c: a silly comment typo
* ext/oci8/oci8.c:
- fixed proto for OciBindByName to represent the forth parameter optional
2002-10-19 Jani Taskinen <[email protected]>
* ext/gd/config.m4:
--with-zlib-dir has to be defined here to enable phpize build
2002-10-19 Wez Furlong <[email protected]>
* ext/standard/file.c
main/php_streams.h
main/streams.c: made fgets() binary safe.
php_stream_gets is now a macro which calls php_stream_get_line. The latter
has an option argument to return the number of bytes in the line.
Functions like fgetcsv(), fgetss() can be made binary safe by calling
php_stream_get_line directly.
2002-10-19 Derick Rethans <[email protected]>
* ext/pgsql/pgsql.c: - Style polizei =)
2002-10-19 Wez Furlong <[email protected]>
* main/streams.c: Probable fix for #19944
2002-10-19 Marcus Börger <[email protected]>
* ext/exif/exif.c
ext/exif/tests/005.phpt
ext/exif/tests/test5.jpg:
MFH: Allow ifd start at offset other than 00000008h and provide testcase.
* ext/exif/exif.c
ext/exif/tests/005.phpt
ext/exif/tests/test5.jpg:
Allow ifd start at offset other than 00000007h and provide testcase.
2002-10-19 Yasuo Ohgaki <[email protected]>
* ext/pgsql/pgsql.c:
Revert invalid patch. It seems the real problem is in php error
function(s). It exits with return code -1 when php_error_docref()
is called.
There is custom error handler and without custom error handler,
it is working.
* ext/pgsql/pgsql.c: Skip field when there is obvious error.
Fixed freeing of wrong zval.
* ext/pgsql/pgsql.c: Fixed typo.
2002-10-18 Ilia Alshanetsky <[email protected]>
* ext/standard/url.c:
Added handling for file:/ schema, which does not contain a host.
2002-10-18 Jani Taskinen <[email protected]>
* ext/standard/dns.c: ws fixes
2002-10-18 Ilia Alshanetsky <[email protected]>
* ext/standard/file.c
main/php_streams.h
main/streams.c: Fixed bug #19971 (optimized the file() function).
The file() function is now also binary safe.
2002-10-18 Derick Rethans <[email protected]>
* run-tests.php: - Added %x for HEX chars
- Added %d as alias for %i (too much C here :)
- Added beginning and end markers to regexp
2002-10-18 Wez Furlong <[email protected]>
* main/network.c: Revert my last bogus commit.
Change the comparison to something that is less likely to inspire me to
make the same mistake again...
* ext/standard/file.c: Improve file().
Patch by Tal Peer <[email protected]>
2002-10-18 Andrei Zmievski <[email protected]>
* apidoc-zend.txt: This is deprecated too.
* apidoc.txt: Remove deprecated apidoc.txt.
* ext/standard/string.c:
- Fixed an infinite loop in setlocale() when only invalid locale names
were passed in the array. (patch by Pal Loberg, [email protected]).
2002-10-18 Wez Furlong <[email protected]>
* main/network.c
main/streams.c: Improve EOF detection. Fixes #19970.
2002-10-18 Tal Peer <[email protected]>
* ext/fribidi/fribidi.c
ext/fribidi/tests/002.phpt:
Changed fribidi_get_charsets() return value to also include the constant
itself (as the key).
2002-10-18 Harald Radi <[email protected]>
* NEWS: make jani happy
2002-10-18 Jani Taskinen <[email protected]>
* NEWS: achtung: keep the style consistent! :)
2002-10-18 Yasuo Ohgaki <[email protected]>
* ext/pgsql/tests/17result.phpt
ext/pgsql/tests/18pg_escape_bytea.phpt
ext/pgsql/tests/19pg_ping.phpt
ext/pgsql/tests/20pg_get_pid.phpt
ext/pgsql/tests/21pg_get_notify.phpt
ext/pgsql/tests/README
ext/pgsql/tests/createdb.inc
ext/pgsql/tests/large_object.inc
ext/pgsql/tests/pg_escape_bytea.inc
ext/pgsql/tests/pg_get_notify.inc
ext/pgsql/tests/pg_get_pid.inc
ext/pgsql/tests/pg_ping.inc
ext/pgsql/tests/result.inc: Added tests for new functions
2002-10-18 Markus Fischer <[email protected]>
* NEWS: - word_count() -> str_word_count()
2002-10-17 Yasuo Ohgaki <[email protected]>
* NEWS: Added pg_get_pid() that get backend process PID.
Does anyone prefer pg_get_backend_pid() or else?
* ext/pgsql/README
ext/pgsql/pgsql.c
ext/pgsql/php_pgsql.h: Added pg_get_pid()
2002-10-17 Ilia Alshanetsky <[email protected]>
* ext/standard/php_string.h
ext/standard/string.c
ext/standard/basic_functions.c:
Renamed word_count to str_word_count to comply with naming conventions.
Thanks Andi, for catching this oversight.
2002-10-17 Tal Peer <[email protected]>
* ext/fribidi/fribidi.c:
Improved fribidi_charset_info() slightly
* ext/fribidi/php_fribidi.h
ext/fribidi/fribidi.c:
New functions:
fribidi_get_charsets()
fribidi_charset_info()
2002-10-17 Harald Radi <[email protected]>
* ext/com/COM.c: fixes bugs #19156 and #19544 (memleak)
2002-10-17 Derick Rethans <[email protected]>
* run-tests.php: - Removing debugging info
2002-10-17 Ilia Alshanetsky <[email protected]>
* ext/standard/url.c:
Added support for file:/. Thanks to Thies for noticing the problem.
2002-10-17 Sascha Schumann <[email protected]>
* ext/ircg/ircg.c:
A child process should not have access to IRCG's file descriptors.
2002-10-17 Yasuo Ohgaki <[email protected]>
* php.ini-recommended
php.ini-dist: Add note for short_open_tag
2002-10-17 Thies C. Arntzen <[email protected]>
* ext/oci8/oci8.c:
- Added Oracle TIMESTAMP type to oci8 extension. (thies)
2002-10-17 Yasuo Ohgaki <[email protected]>
* NEWS: Added pg_get_notify() for better performace for applications
cache query results.
Removed unneeded entry.
* ext/pgsql/pgsql.c
ext/pgsql/php_pgsql.h: Added async message function - pg_get_notify()
* ext/mysql/php_mysql.c: Remove mysql_result_seek() alias.
2002-10-17 Jani Taskinen <[email protected]>
* ext/snmp/config.m4
ext/snmp/snmp.c: Fix this for Wez and his antique ucd-snmp
* NEWS: Snow..yuck..
* ext/zip/config.m4: Fix the phpize build
* pear/pear.m4: Fix some phpize problems.
* ext/zip/zip.c: Part 1 of fixing the shared build
* ext/pdf/config.m4: --with-zlib-dir was missing. Needed for phpize builds
2002-10-17 Ilia Alshanetsky <[email protected]>
* ext/standard/basic_functions.c
ext/standard/php_string.h
ext/standard/string.c:
Added word_count() function that allows counting of words inside a string.
The function also allows the user to retrieve all the words from a string.
2002-10-17 Jani Taskinen <[email protected]>
* ext/snmp/snmp.c: ws fixes
2002-10-16 Harald Radi <[email protected]>
* ext/com/VARIANT.c
ext/com/conversion.c
ext/com/conversion.h:
changed the VARIANT class to be able to create arrays of all types
and not only VT_VARIANT
2002-10-16 Rasmus Lerdorf <[email protected]>
* ext/gd/libgd/gd_topal.c: Fix for bug #19941
2002-10-16 Ilia Alshanetsky <[email protected]>
* sapi/apache2filter/sapi_apache2.c: Fixed a bug with .phps handler.
* main/main.c:
Fixed bug #19921. (memory leak introduced by me in rev 1.492)
2002-10-16 Jani Taskinen <[email protected]>
* acinclude.m4: - Fix typo..
2002-10-16 Sebastian Bergmann <[email protected]>
* main/config.w32.h.in: Revert. Again.
2002-10-16 Rui Hirokawa <[email protected]>
* ext/mbstring/mbstring.c: modified zend_bool handling code.
* ext/mbstring/mbstring.h: *** empty log message ***
* ext/mbstring/mbstring.c:
fixed a problem when mbstring.encoding_translation is defined per directory basis.
2002-10-16 Edin Kadribasic <[email protected]>
* NEWS: Newly available extensions on windows.
2002-10-16 Sebastian Bergmann <[email protected]>
* main/config.w32.h.in: Patch by Urs Gehrig <[email protected]>.
2002-10-16 Jani Taskinen <[email protected]>
* ext/snmp/snmp.c: - Fixed memleak when connection fails.
- Fixed snmpget() to work with net-snmp
- Fixed the error messages to use the new style.
* ext/snmp/snmp.c: Some more compatibility fixes for net-snmp vs ucd-snmp
* ext/snmp/snmp.c:
- Fix the last commit..(thanks to Harrie Hazewinkel <[email protected]>)
2002-10-16 Edin Kadribasic <[email protected]>
* ext/fribidi/fribidi.dsp: Added win32 project file.
2002-10-15 Yasuo Ohgaki <[email protected]>
* main/output.c: Sync with head
2002-10-15 Jani Taskinen <[email protected]>
* acinclude.m4:
- Added PHP_PROG_SED which checks whether the sed in system works with
very long strings.
2002-10-15 Markus Fischer <[email protected]>
* win32/php4dllts.dsp:
- Define LINK_SIZE=2 needed for newly updated pcrelib; fixes Win32 build.
2002-10-15 Ilia Alshanetsky <[email protected]>
* run-tests.php:
Fixed a bug in the calculation of the POST request length.
2002-10-15 Wez Furlong <[email protected]>
* ext/standard/file.c
main/streams.c:
Nope, that last one wasn't a leak in main/streams.c, it was
file_get_contents misinterpreting the result...
2002-10-15 Sterling Hughes <[email protected]>
* ext/xslt/php_sablot.h
ext/xslt/sablot.c:
Fix a problem relating to these structure symbols being redefined on LFS
systems.
Fix by Sascha Schumann <[email protected]>
2002-10-15 Wez Furlong <[email protected]>
* main/streams.c: Fix mem leak for zero-byte files.
* main/streams.c: Some buffer paranoia.
Also, make feof() detection safer (ala recent changes to zlib extension).
* ext/zlib/zlib_fopen_wrapper.c: Fix for 19906.
gzeof has different semantics from feof, in that gzeof will return true
if the read position is at EOF, even if the most recent read was 100%
successful.
feof will return true only (usually) if the most recent fread failed.
2002-10-15 Sterling Hughes <[email protected]>
* ext/standard/math.c:
hopefully silence compile warnings on Solaris related to HUGEVAL being
undefined.. HUGEVAL is defined (well the manual would indicate so) in
stdlib.h, not math.h.
Bug #: 19807
2002-10-15 Andrei Zmievski <[email protected]>
* ext/pcre/pcrelib/testdata/testinput1
ext/pcre/pcrelib/testdata/testinput2
ext/pcre/pcrelib/testdata/testinput3
ext/pcre/pcrelib/testdata/testinput4
ext/pcre/pcrelib/testdata/testinput5
ext/pcre/pcrelib/testdata/testoutput1
ext/pcre/pcrelib/testdata/testoutput2
ext/pcre/pcrelib/testdata/testoutput3
ext/pcre/pcrelib/testdata/testoutput4
ext/pcre/pcrelib/testdata/testoutput5
ext/pcre/pcrelib/doc/Tech.Notes
ext/pcre/pcrelib/doc/pcre.3
ext/pcre/pcrelib/doc/pcre.html
ext/pcre/pcrelib/doc/pcre.txt
ext/pcre/pcrelib/doc/pcregrep.1
ext/pcre/pcrelib/doc/pcregrep.html
ext/pcre/pcrelib/doc/pcregrep.txt
ext/pcre/pcrelib/doc/pcretest.1
ext/pcre/pcrelib/doc/pcretest.html
ext/pcre/pcrelib/doc/pcretest.txt
ext/pcre/pcrelib/doc/perltest.txt
ext/pcre/pcrelib/ChangeLog
ext/pcre/pcrelib/NON-UNIX-USE
ext/pcre/pcrelib/README
ext/pcre/pcrelib/RunTest
ext/pcre/pcrelib/internal.h
ext/pcre/pcrelib/maketables.c
ext/pcre/pcrelib/pcre-config.in
ext/pcre/pcrelib/pcre.c
ext/pcre/pcrelib/pcre.def
ext/pcre/pcrelib/pcre.h
ext/pcre/pcrelib/pcregrep.c
ext/pcre/pcrelib/pcreposix.c
ext/pcre/pcrelib/pcretest.c
ext/pcre/pcrelib/perltest
ext/pcre/pcrelib/perltest8
ext/pcre/pcrelib/study.c
ext/pcre/config.m4: Upgrade to version 3.92.
2002-10-15 Ilia Alshanetsky <[email protected]>
* ext/exif/tests/002.phpt: Fixed the output_handler ini setting.
Code cleanup.
* NEWS: Bug fixing news.
* ext/standard/tests/general_functions/001.phpt: Added tests for %e & %E
* ext/standard/formatted_print.c:
Fixed bug #4232. (Added support for %e and %E to printf/sprintf)
2002-10-15 Sascha Schumann <[email protected]>
* ext/ircg/README.txt: update
2002-10-15 Derick Rethans <[email protected]>
* ext/exif/tests/002.phpt: - Staying consistent with other tests
2002-10-15 Wez Furlong <[email protected]>
* ext/zlib/zlib_fopen_wrapper.c:
Don't use streams-level buffer on zlib streams.
2002-10-15 Ilia Alshanetsky <[email protected]>
* main/user_streams.c: Fixed possible memory leaks.
2002-10-15 Wez Furlong <[email protected]>
* main/user_streams.c:
Fix leak, and avoid initialization problems where retval is re-used
within a function.
2002-10-15 Jani Taskinen <[email protected]>
* NEWS: Try keep those moved/removed exts entry at top.
2002-10-15 Ilia Alshanetsky <[email protected]>
* NEWS: Bug fixing news entries.
2002-10-15 Jani Taskinen <[email protected]>
* ext/snmp/config.m4
ext/snmp/snmp.c: Make this thing to compile with net-snmp-5.0.x
2002-10-15 Marcus Börger <[email protected]>
* ext/exif/tests/002.phpt:
remove ob_end_clean() and instead use ini section
2002-10-14 Jani Taskinen <[email protected]>
* ext/iconv/tests/translit-failure.phpt:
This test should not print out the error (which is correct).
2002-10-14 Edin Kadribasic <[email protected]>
* sapi/embed/config.m4:
Respect INSTALL_ROOT var. Thanks to Jani for catching this one.
2002-10-14 Tal Peer <[email protected]>
* pear/PEAR/Installer.php:
* Fixed a nasty bug preventing installation of pecl exts.
2002-10-14 Ilia Alshanetsky <[email protected]>
* ext/standard/browscap.c: Fixed bug #19649.
* ext/standard/tests/general_functions/001.phpt:
Added float printing tests.
2002-10-14 Sebastian Bergmann <[email protected]>
* main/php_network.h: Revert to 1.34.
2002-10-14 Ilia Alshanetsky <[email protected]>
* ext/standard/formatted_print.c:
Fixed a bug (introduced in previous patch) that caused non-double values to
be converted to 0 by printf/sprint functions when %f format is specified.
2002-10-14 Zeev Suraski <[email protected]>
* NEWS
win32/registry.c:
Change the 'security level' of registry entries to PHP_INI_SYSTEM. They're
in the system hive in the registry, so only people with administrative
priveleges can add stuff in there.
2002-10-14 Derick Rethans <[email protected]>
* sapi/cli/php_cli.c: - Revert, got tricked by a stale object file
2002-10-14 Yasuo Ohgaki <[email protected]>
* run-tests.php: Fixed warnings
2002-10-14 Edin Kadribasic <[email protected]>
* sapi/embed/config.m4: Install lib into $(prefix)/lib.
Make $(prefix)/lib before trying to copy the lib into it.
2002-10-14 Derick Rethans <[email protected]>
* run-tests.php:
- Added the TEST_PHP_USER environment variable with which you can specify
additional directories with tests to run. This is ideal for having your own
test suite on your system. You can specify more directories by seperating them
with a ",", for example:
TEST_PHP_USER=/dat/dev/xdebug/tests,/dat/dev/srm/tests make test
* sapi/cli/php_cli.c: - Fix CLI
2002-10-14 Sebastian Bergmann <[email protected]>
* main/php_network.h: Whitespace fixes.
* main/php_network.h: Fix Win32 build.
2002-10-14 Wez Furlong <[email protected]>
* main/streams.c: *cough*
Fix inverted logic for the assert.
2002-10-14 Jani Taskinen <[email protected]>
* ext/snmp/snmp.c: This is not zval..
2002-10-14 Wez Furlong <[email protected]>
* ext/standard/file.c
main/streams.c:
- fgets($fp) (with no length parameter) now uses a buffer as long as the
the next line available from the $fp. Previously, there was a 1KB limit.
* ext/standard/tests/file/userstreams.phpt:
Add a sanity check and more verbose output in the case of an error.
* main/network.c: Implement better SSL error handling.
* main/user_streams.c:
Fix stream_eof result interpretation (and thus the user-streams test).
2002-10-13 Wez Furlong <[email protected]>
* main/streams.c: Remove some old code.
* main/network.c
main/php_network.h: A much better probable fix for #16114.
* main/network.c: Probable fix for #16114
* main/streams.c: Fix a nasty nasty bug:
When not enough data to satisfy a read was found in the buffer, fgets modifies
the buf pointer to point to the position to store the next chunk. It then
returned the modified buf pointer, instead of a pointer to the start of the
buffer.
Also added some infrastructure for making fgets grow the buffer on-demand to
the correct line-size. Since streams uses reasonable chunk sizes, the
performance of the realloc's should be pretty good; in the best case, the line
is already found completely in the buffer, so the returned buffer will be
allocated to precisely the correct size.
In the worst case, where the buffer only contains part of the line, we get a
realloc per buffer fill. The reallocs are either the size of the remainder
of the line, or the chunk_size (if the buffer sill does not contain a complete
line). Each realloc adds an extra byte for a NUL terminator.
I think this will perform quite well using the default chunk size of 8K.
* main/php_network.h
ext/standard/fsock.c
main/network.c: (php_socket_errno) win32 errno compatible macro.
(php_socket_strerror) win32 compatible strerror replacement.
Add an E_NOTICE when a socket write fails.
2002-10-13 Derick Rethans <[email protected]>
* ext/standard/dl.c:
- Fixed bug #19885, dl() no longer gives a fatal error when a module
could not be loaded. (Derick)
2002-10-13 Sascha Schumann <[email protected]>
* sapi/thttpd/thttpd_patch:
Redo the patch on Linux, the cygwin diff seems to be a bit broken.
* sapi/thttpd/thttpd_patch: PHP + thttpd (+IRCG) build using CYGWIN now
* sapi/thttpd/config.m4: Remove set .x
* sapi/thttpd/config.m4: Use if block rather than an or expression
2002-10-13 Derick Rethans <[email protected]>
* ext/session/tests/004.phpt
ext/session/tests/005.phpt
ext/session/tests/014.phpt
ext/session/tests/015.phpt
ext/session/tests/018.phpt
ext/session/tests/020.phpt
ext/session/tests/021.phpt: - Hardcode dependent ini setting
2002-10-13 Martin Jansen <[email protected]>
* pear/pear.m4: * Add missing PHP_SUBST(awk).
2002-10-13 Yasuo Ohgaki <[email protected]>
* ext/pgsql/pgsql.c: Fixed proto. Clean up.
* ext/pgsql/pgsql.c: Need to init connstring when there are 2 args.
2002-10-13 Shane Caraveo <[email protected]>
* sapi/cgi/CREDITS
sapi/cgi/README.FastCGI
sapi/cgi/cgi_main.c:
make fastcgi usage threadsafe, ready for future multithreaded fastcgi implementation
get rid of environment overwriting but hooking into php's environment function
set $_ENV correctly for mod_fastcgi
add -b to specify binding for fastcgi
new readme file with information for running under apache2.0 and iis
2002-10-13 Yasuo Ohgaki <[email protected]>
* ext/pgsql/pgsql.c
ext/pgsql/php_pgsql.h: Introduce connect_type option to pg_connect().
pg_connect(conn_str, conn_type) is allowed.
2002-10-13 Shane Caraveo <[email protected]>
* main/php_variables.c
main/php_variables.h:
make php_import_environment_variables overwritable so fastcgi can correctly
set $_ENV.
* sapi/cgi/libfcgi/os_unix.c: fixes for unix, untested
remove exit calls
fix a couple function definitions
2002-10-13 Jani Taskinen <[email protected]>
* ext/db/tests/.cvsignore: ignore test.dbm
* ext/standard/tests/file/.cvsignore: These should be ignored.
2002-10-13 Shane Caraveo <[email protected]>
* sapi/cgi/libfcgi/os_win32.c: fix shutdown issues
* sapi/cgi/libfcgi/os_win32.c:
fix invalid handle issue that shutdown php fastcgi prematurly
fix checking os name for impersonation
2002-10-13 Yasuo Ohgaki <[email protected]>
* ext/pgsql/php_pgsql.h
ext/pgsql/pgsql.c: Enable pg_escape_bytea().