forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
27045 lines (19469 loc) · 712 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-12-01 Moriyoshi Koizumi <[email protected]>
* ext/iconv/iconv.c:
Loosen error check. There's no reason to forbid a single '=' occurrence
in an unencoded string.
Fix white space handing. Meaningful spaces have got stripped wrongly
before this patch.
* ext/iconv/iconv.c:
Allow iconv_mime_decode_headers() to handle multiple occurence of a header.
2003-12-01 Ilia Alshanetsky <[email protected]>
* ext/standard/string.c:
Optimize substr_replace (this makes it 3-8 times faster depending on the
string length).
2003-12-01 Moriyoshi Koizumi <[email protected]>
* ext/iconv/tests/iconv_mime_decode.phpt:
Update test.
* ext/iconv/php_iconv.h:
Forgot about this one
* NEWS
ext/iconv/iconv.c:
Add iconv_mime_decode_headers() to parse multiple MIME headers.
A few trivial fixes.
* ext/iconv/iconv.c
ext/iconv/tests/iconv_mime_decode.phpt:
More RFC2047 conformance. Add ability to forcefully continue processing
on error.
2003-12-01 Ilia Alshanetsky <[email protected]>
* buildconf:
The least intrusive way to 'import' PECL extensions into the main tree.
For the moment this deals with tidy, further extensions can be added at a
later point.
2003-12-01 Andi Gutmans <[email protected]>
* TSRM/tsrm_win32.c:
- Fix indentation
2003-12-01 Sara Golemon <[email protected]>
* ext/standard/filestat.c
main/php_streams.h
main/streams/plain_wrapper.c:
Move safemode/basedir checks for url_stat to plain_wrapper.
2003-12-01 Derick Rethans <[email protected]>
* main/php_variables.c:
- Fix the default SAPI filter too; all weird problems should be gone again.
2003-12-01 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS
ext/dio/dio.c:
MFH: - Fixed bug #26488 (Missing declaration of CRTSCTS in ext/dio/dio.c)
* ext/dio/dio.c:
WS fix
* ext/dio/dio.c:
- Fixed bug #26488 (Missing declaration of CRTSCTS in ext/dio/dio.c)
2003-12-01 Rob Richards <[email protected]>
* (PHP_4_3)
ext/domxml/php_domxml.c:
Fix bug #26443: No errror reporting for Errors in the domxml extension
2003-12-01 Jani Taskinen <[email protected]>
* configure.in
sapi/cgi/config9.m4
sapi/cli/config.m4
scripts/Makefile.frag:
- Made --program-prefix and --program-suffix work. (See bug #23030)
* ext/bcmath/libbcmath/src/bcmath.h:
missing config.h include
2003-12-01 Andi Gutmans <[email protected]>
* ZendEngine2/zend_execute.c:
- Change to E_STRICT so as not to break existing scripts.
- Thanks Edin
2003-12-01 Jani Taskinen <[email protected]>
* tests/lang/bug26182.phpt:
- Nuke property_exists() calls
- Fix the test. (this is BUG in PHP 5, works in PHP 4)
2003-12-01 Andi Gutmans <[email protected]>
* ZendEngine2/zend_builtin_functions.c:
- Nuke property_exists(). We need to fix isset() and this is already
- supported in reflection API. In any case, it's best not to add new
- functions in the general namespace except for keeping engine consistency
(which would have been true in this case)
* ZendEngine2/zend_API.c:
- Revert auto-conversion in parameter API
* ZendEngine2/zend_operators.c:
- Don't automatically call __toString() in convert_to_string_ex().
- use __toString() in your code.
- Keep the auto-case in make_printable_zval.
2003-12-01 Jani Taskinen <[email protected]>
* NEWS
ext/db/.cvsignore
ext/db/CREDITS
ext/db/config.m4
ext/db/db.c
ext/db/db.dsp
ext/db/package.xml
ext/db/php_db.h
ext/db/tests/.cvsignore
ext/db/tests/001.phpt
ext/db/tests/002.phpt
ext/db/tests/003.phpt
ext/db/tests/004.phpt
ext/db/tests/005.phpt
ext/db/tests/006.phpt
ext/db/tests/test.inc
main/main.c:
- Moved ext/db to PECL.
2003-12-01 Christian Stocker <[email protected]>
* ext/dom/document.c:
Fix Bug, if parser input is not a filename (By Adam)
2003-12-01 Greg Beaver <[email protected]>
* pear/tests/pear_installer4.phpt:
new test case and supporting files - incomplete, but works as it is
* pear/tests/pear_common_downloadHttp.phpt:
potential major booboo in unit test, probably won't affect this one
* pear/PEAR/Installer-minus-download.php:
2 bugs found here, added deprecation warning for those who have written
their own PEAR application
* pear/PEAR/Installer-minus-download.php:
2 bugs found here
* pear/PEAR/Downloader.php:
2 bugs found
* pear/tests/pear_common_downloadHttp.phpt:
fclose() might be needed
* pear/tests/pear_common_validPackageVersion.phpt:
new unit test
* pear/PEAR/Common.php:
fix bug found by unit testing in package ordering
* pear/tests/pear_common_sortPkgDeps.phpt:
fix unit test
* pear/tests/common_sortPkgDeps3_package.xml:
minor booboo
2003-11-30 Greg Beaver <[email protected]>
* pear/tests/common_sortPkgDeps1_package.xml
pear/tests/common_sortPkgDeps2_package.xml
pear/tests/common_sortPkgDeps3_package.xml
pear/tests/common_sortPkgDeps4_package.xml
pear/tests/common_sortPkgDeps5_package.xml
pear/tests/common_sortPkgDeps6_package.xml
pear/tests/pear_common_sortPkgDeps.phpt:
new unit test - test works, but there is a serious bug in sortPkgDeps to be
fixed, as unearthed by this test
* pear/tests/pear_common_downloadHttp.phpt:
finish unit test with non-working download test with callback
* pear/tests/pear_common_downloadHttp.phpt:
add in skip condition for internet offline, and callback test
* pear/tests/pear_common_downloadHttp.phpt:
first unsuccessful test works
* pear/tests/pear_common_downloadHttp.phpt:
first successful download test works :)
* pear/tests/testdownload.tgz:
beginning framework for PEAR_Common::downloadHttp test - binary test file
* pear/tests/pear_common_downloadHttp.phpt:
beginning framework for PEAR_Common::downloadHttp test
* pear/tests/pear_dependency_checkExtension.phpt
pear/tests/pear_dependency_checkPackage.phpt
pear/tests/pear_dependency_checkPackageUninstall.phpt:
tweak tests
* pear/PEAR/Command/Install-using-downloader.php:
remove old holdover code that has no purpose
* pear/PEAR/Installer-minus-download.php:
...and with these changes, 100% BC is maintained.
2003-11-30 Derick Rethans <[email protected]>
* README.input_filter:
- And fix the README too.
* main/SAPI.h:
- Fixed standard wrapper for input filter.
2003-11-30 Ilia Alshanetsky <[email protected]>
* ext/standard/mail.c:
MFB: Fix for possible uninitialized usage of subject_r.
* main/network.c
main/streams/xp_socket.c:
Removed unused variables.
2003-11-30 Marcus Boerger <[email protected]>
* run-tests.php
ext/session/tests/001.phpt
ext/session/tests/003.phpt
ext/session/tests/004.phpt
ext/session/tests/005.phpt
ext/session/tests/006.phpt
ext/session/tests/019.phpt
ext/standard/tests/file/fopencookie.phpt
ext/standard/tests/file/userstreams.phpt
ext/standard/tests/serialize/bug21957.phpt
tests/classes/__call_001.phpt
tests/classes/bug23951.phpt
tests/classes/bug24399.phpt
tests/classes/class_example.phpt
tests/classes/destructor_and_references.phpt
tests/classes/inheritance.phpt
tests/classes/interface_doubled.phpt
tests/classes/interface_implemented.phpt
tests/classes/interface_member.phpt
tests/classes/object_reference_001.phpt
tests/lang/bug21669.phpt
tests/lang/bug21961.phpt
tests/lang/bug22231.phpt
tests/lang/bug22367.phpt
tests/lang/bug22510.phpt
tests/lang/bug23922.phpt
tests/lang/bug24403.phpt
tests/lang/bug25652.phpt
tests/lang/bug26182.phpt
tests/run-test/test005.phpt
tests/run-test/test008.phpt
tests/run-test/test008a.phpt:
Fix tests for E_STRICT and check for E_STRICT in run-tests.php.
* ZendEngine2/zend_default_classes.c:
Check return value of exception::__tostring()
* ext/mbstring/tests/common.inc
ext/mbstring/tests/mb_convert_variables.phpt:
Fix tests
* ZendEngine2/tests/bug20240.phpt:
Fix test
2003-11-30 Rob Richards <[email protected]>
* ext/dom/php_dom.c:
remove call to xmlMemoryDump
2003-11-30 Christian Stocker <[email protected]>
* ext/dom/examples/dom1.php:
fixed typos
* ext/dom/tests/dom003.phpt:
output of uncaught exception changed
2003-11-30 Georg Richter <[email protected]>
* ext/mysqli/mysqli_api.c:
prototype fix for mysqli_ssl_set
2003-11-30 Jani Taskinen <[email protected]>
* NEWS:
New funcs
* (PHP_4_3)
NEWS:
BFN
2003-11-30 Greg Beaver <[email protected]>
* pear/package-PEAR-new-Downloader.xml
pear/PEAR/Downloader.php
pear/PEAR/Installer-minus-download.php
pear/PEAR/Command/Install-using-downloader.php:
experimental code shuffling, moved download() into a new class,
PEAR_Downloader.
Reasons:
- 7 parameters for a method with lots of pass by reference
implies the need to save state, i.e. use an object
- cleaner code. download() can be easily split into 4 separate but
related methods
- Installer.php is now exclusively used for installation
- future extensibility: switching to channels or local package
repositories from
using PEAR_Remote is easy. Simply extend the API for PEAR_Downloader:
no changes needed to the installer at all
to install for testing purposes, use
pear upgrade --force package-PEAR-new-Downloader.xml
to uninstall, use
pear upgrade --force package-PEAR.xml
* pear/tests/pear_system.phpt:
got it - the pattern ONLY needs addslashes for windows paths
2003-11-29 Greg Beaver <[email protected]>
* pear/tests/pear_system.phpt:
fix one part - can't get the ereg() to match on windows, will fix when I
figure out why
* pear/tests/pear1.phpt
pear/tests/pear2.phpt
pear/tests/pear_common_buildProvidesArray.phpt
pear/tests/pear_common_infoFromString.phpt
pear/tests/pear_config.phpt
pear/tests/pear_registry.phpt:
fix up unit tests - registry was ridiculously out of date. Guess nobody
ever runs these...
2003-11-29 Wez Furlong <[email protected]>
* win32/time.c:
Fix build for new usleep implementation.
NB: we now depend on windows 98 and later;
windows 95 does not have these timing functions.
* main/config.w32.h
win32/time.c:
implement usleep for win32
* ext/standard/basic_functions.c
ext/standard/file.c
ext/standard/streamsfuncs.c
ext/standard/streamsfuncs.h
ext/standard/tests/network/tcp4loop.phpt
main/network.c
main/php_network.h
main/streams/php_stream_transport.h
main/streams/transports.c
main/streams/xp_socket.c:
Add stream_socket_sendto and stream_socket_recvfrom which work very much
like sendto() and recvfrom() syscalls.
2003-11-29 Sebastian Bergmann <[email protected]>
* win32/php4dllts.dsp:
Add dom_iterators.c to project.
2003-11-29 Wez Furlong <[email protected]>
* (PHP_4_3)
ext/standard/basic_functions.c:
Fix:
Thanks to Manuel Lemos
2003-11-29 Greg Beaver <[email protected]>
* pear/tests/pear_common_buildProvidesArray.phpt:
new test case
2003-11-29 Rob Richards <[email protected]>
* ext/dom/dom_iterators.c:
guess this file should be added too :)
* ext/xsl/php_xsl.c:
fix ZTS build
* ext/dom/config.m4
ext/dom/document.c
ext/dom/documenttype.c
ext/dom/element.c
ext/dom/namednodemap.c
ext/dom/node.c
ext/dom/nodelist.c
ext/dom/php_dom.c
ext/dom/php_dom.h
ext/dom/xml_common.h
ext/dom/examples/dom1.inc
ext/dom/examples/dom1.php
ext/dom/tests/dom001.phpt
ext/dom/tests/dom_test.inc:
implement namednodemap and nodelist
fix xsl/dom integration under windows
update tests and examples
2003-11-29 Greg Beaver <[email protected]>
* pear/tests/pear_common_infoFromString.phpt:
finish unit test
2003-11-29 Sara Golemon <[email protected]>
* ext/standard/ftp_fopen_wrapper.c:
Add in missing stat element and fix win32 build
2003-11-29 Greg Beaver <[email protected]>
* pear/tests/pear_common_analyzeSC.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
pear/tests/pear_system.phpt:
add in environment variable for easy non-skipping
* pear/PEAR/Common.php:
fix some bugs found in the unit test
* pear/tests/pear_common_infoFromString.phpt:
start on a new unit test
2003-11-29 Marcus Boerger <[email protected]>
* ZendEngine2/zend_compile.c
ZendEngine2/zend_iterators.c:
Fix memleak
2003-11-29 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
NEWS:
Bug fixing news.
* (PHP_4_3)
Zend/zend_highlight.c
Zend/zend_language_scanner.l
ext/standard/tests/general_functions/highlight_heredoc.phpt
ext/tokenizer/tokenizer.c:
MFH: Fixed bug #26463 (Incorrect handling of semicolons after heredoc)
* ZendEngine2/zend_highlight.c
ZendEngine2/zend_language_scanner.l
ext/tokenizer/tokenizer.c:
Fixed bug #26463 (Incorrect handling of semicolons after heredoc)
* ext/standard/tests/general_functions/highlight_heredoc.phpt:
Fixed bug #26463 (Incorrect handling of semicolons after heredoc)
2003-11-29 Marcus Boerger <[email protected]>
* ZendEngine2/zend_API.h:
This takes the address of a zval ptr
2003-11-29 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
ext/tokenizer/tokenizer.c:
MFH: Fixed a memory leak when tokenizing scripts with heredoc.
* ext/tokenizer/tokenizer.c:
Fixed a memory leak when tokenizing scripts with heredoc.
2003-11-29 Marcus Boerger <[email protected]>
* ext/simplexml/simplexml.c:
Fix return value.
* ZendEngine2/zend_API.h:
Add macros to return values of other zvals.
This is needed because one cannot use REPLACE_ZVAL_VALUE with
return_value.
2003-11-29 Greg Beaver <[email protected]>
* pear/package-PEAR.xml
pear/package-PEAR.xml:
add dependency on xml extension - we need it for every installation/package
function
2003-11-29 Marcus Boerger <[email protected]>
* ext/simplexml/simplexml.c:
Remove test code
2003-11-29 Ilia Alshanetsky <[email protected]>
* ZendEngine2/zend_execute.c:
Restore original patch for bug #26281.
2003-11-29 Sara Golemon <[email protected]>
* ext/standard/ftp_fopen_wrapper.c:
Finish off ftp://'s url_stat support
2003-11-29 Marcus Boerger <[email protected]>
* ZendEngine2/zend_compile.c:
Revert accidential commit until decision
* ZendEngine2/zend_compile.c
ZendEngine2/zend_default_classes.c:
Make exception code more robust:
- Fix error in calculation of trace-string length
- Allow to overload __strostring() and make it work for uncaught
exceptions
- Show exception thrown while displaying exceptions
2003-11-29 Ilia Alshanetsky <[email protected]>
* NEWS:
The removed NEWS entry is already in 4.X news file.
2003-11-29 Christian Stocker <[email protected]>
* NEWS:
a dot too many
* NEWS:
Some news from ext/xsl
* ext/xsl/php_xsl.c
ext/xsl/php_xsl.h
ext/xsl/xsltprocessor.c:
Fixed for Bug #26384 (domxslt->process causes segfault with xsl:key)
2003-11-29 Greg Beaver <[email protected]>
* pear/package-PEAR.xml
pear/PEAR/Command.php:
fix Bug #324 pear -G gives Fatal Error (PHP-GTK not installed, but error is
at engine level)
2003-11-29 Wez Furlong <[email protected]>
* NEWS:
typofix
2003-11-29 Derick Rethans <[email protected]>
* NEWS
README.input_filter:
- Update NEWS and README for input_filters
* README.input_filter
ext/mbstring/mb_gpc.c
main/SAPI.c
main/SAPI.h
main/php_variables.c
main/rfc1867.c:
- Fix sapi_input_filter patch. Returning 1 from the filter handler should
make PHP register the variable, returning 0 shouldn't. The new length of
the variables being filtered is now returned in the new_val_len argument
of the function.
2003-11-29 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS
configure.in
ext/bcmath/.cvsignore
ext/bcmath/config.m4
ext/bcmath/libbcmath/src/bcmath.h:
MFH: - fixed Bug #26462 (phpize + ext/bcmath -> compile error)
* configure.in
ext/bcmath/.cvsignore
ext/bcmath/libbcmath/src/bcmath.h:
- Fixed bug #26462 (phpize + ext/bcmath -> compile error)
2003-11-29 Christian Stocker <[email protected]>
* ext/xsl/php_xsl.c:
follow coding standards.
* ext/xsl/php_xsl.c:
it's now possible to return a DomNode from userland functions back to the
xsl-processor
2003-11-29 Jani Taskinen <[email protected]>
* ext/dom/tests/.cvsignore:
missing .cvsignore
2003-11-29 Christian Stocker <[email protected]>
* ext/dom/dom_ce.h
ext/dom/php_dom.h
ext/dom/xml_common.h:
move some definitions to xml_common.h
2003-11-29 Marcus Boerger <[email protected]>
* tests/lang/bug21820.phpt:
Research reveals that the error text depends on the tools and their
versions used to create the language parser.
2003-11-29 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS:
BFN
* (PHP_4_3)
ext/openssl/config0.m4
ext/openssl/php_openssl.h:
- Fixed bug #26447 (--with-openssl=shared causes compile errors).NEWS
2003-11-29 Wez Furlong <[email protected]>
* (PHP_4_3)
ext/standard/fsock.c
main/network.c
main/php_network.h
main/streams.c:
fix zts build...
2003-11-29 Jani Taskinen <[email protected]>
* tests/lang/bug24908.phpt:
test for bug #24908
* tests/lang/bug21820.phpt:
- Fix expected output.
* tests/lang/bug25652.php
tests/lang/bug25652.phpt:
oops..
* tests/lang/bug25652.phpt:
file bug25652.phpt was initially added on branch PHP_4_3.
* tests/lang/bug25652.php:
test for bug #25652
* win32/php5ts.dsw:
- remove non-existing servlet entry
2003-11-29 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
NEWS:
Bug fixing news & corrections.
* (PHP_4_3)
tests/lang/overload_leak.phpt:
Added missing skip conditon.
* (PHP_4_3)
ext/standard/var.c
ext/standard/tests/array/bug26458.phpt:
MFH: Fixed bug #26458 (var_dump(), var_export(), debug_zval_dump() not
binary safe for array keys).
* ext/standard/var.c
ext/standard/tests/array/007.phpt
ext/standard/tests/array/array_intersect_1.phpt
ext/standard/tests/array/bug26458.phpt:
Fixed bug #26458 (var_dump(), var_export(), debug_zval_dump() not binary
safe for array keys).
2003-11-29 Sara Golemon <[email protected]>
* php.ini-dist
php.ini-recommended:
Update php.ini-* with E_STRICT error reporting level. -dist excludes
E_STRICT, -recommended includes it.
2003-11-29 Jani Taskinen <[email protected]>
* NEWS:
news for xslt
* tests/lang/bug24926.phpt:
test for bug #24926
2003-11-29 Sara Golemon <[email protected]>
* ext/ncurses/ncurses.c:
Handle dirty script exit.
2003-11-29 Christian Stocker <[email protected]>
* ext/domxml/tests/area_list.xsl
ext/domxml/tests/area_list.xsl
ext/domxml/tests/area_name.xml
ext/domxml/tests/area_name.xml:
file area_list.xsl was initially added on branch PHP_4_3.
* ext/domxml/tests/bug26384.phpt
ext/domxml/tests/bug26384.phpt:
file bug26384.phpt was initially added on branch PHP_4_3.
* (PHP_4_3)
ext/domxml/php_domxml.c:
enhanced bug-26384-fix. It now only does an DocCopy, if xsl:key was
found in xslt-document by default.
2003-11-28 Sara Golemon <[email protected]>
* NEWS
ext/standard/basic_functions.h
ext/standard/filestat.c
ext/standard/ftp_fopen_wrapper.c
main/php_streams.h
main/streams/plain_wrapper.c
main/streams/streams.c:
Route php_stat() via streams/url_stat API (php_stream_stat_path).
This enables fopen-wrappers support on stat() and related family calls.
2003-11-28 Wez Furlong <[email protected]>
* ext/openssl/xp_ssl.c
main/streams/streams.c
main/streams/xp_socket.c:
(sort of) MFB, feof fix for sockets.
* (PHP_4_3)
main/streams.c:
Probable fix for #25575; STDIN/STDOUT/STDERR streams not registered
as network sockets when PHP run from x?inetd.
* (PHP_4_3)
main/network.c
main/streams.c:
Fix for bug #25939; feof not working correctly for sockets.
Possibly also fixes #23220; warnings issued by fgets on ssl sockets.
2003-11-28 Christian Stocker <[email protected]>
* ext/xsl/php_xsl.c
ext/xsl/php_xsl.h:
- Added possibility to call php functions as XSLT-functions
eg: <xsl:value-of select="php:function('date','r')"/>
Namespace is http://php.net/functions
* ext/dom/element.c
ext/dom/php_dom.c
ext/dom/php_dom.h
ext/dom/xml_common.h:
changing dom_object_get_data to php_dom_object_get_data and PHP_DOM_EXPORT
it
(by Rob Richards)
2003-11-28 Greg Beaver <[email protected]>
* (PHP_4_3)
pear/PEAR.php:
odd merge conflict fixed
2003-11-28 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
NEWS
ext/standard/http_fopen_wrapper.c:
Fixed bug #26440 (MFH missing context options).
* (PHP_4_3)
ext/standard/file.c:
MFH: More memory leak fixes for stream contexts.
* ext/standard/streamsfuncs.c:
More memory leak fixes for stream contexts.
* NEWS
NEWS:
Bug fixing news.
2003-11-28 Rob Richards <[email protected]>
* (PHP_4_3)
ext/domxml/php_domxml.c:
Fix for bug #26446: domxml_open_file() returns an empty error-Array
2003-11-28 Wez Furlong <[email protected]>
* (PHP_4_3)
ext/com/COM.c:
MFH: Fix for Bug #25664; calling ITypeInfo::Invoke with bogus params.
* ext/com_dotnet/com_com.c:
Fix #25664 - COM crashes when calling a Delphi implementations of
ITypeInfo.
Problem was that our extension assumes that the first param to
ITypeInfo::Invoke was a reference to the COM object; this is not
necessarily true and caused a crash in this instance.
Problem solved by removing the ITypeInfo::Invoke call, as it doesn't buy
us anything anyway.
* ext/standard/var.c:
fix #26001; serialize crashes when accessing an overloaded
object that has no properties (NULL hashtable).
* ext/com_dotnet/com_handlers.c:
fix memleak
2003-11-28 Ilia Alshanetsky <[email protected]>
* ZendEngine2/zend_API.c:
Add removed lcname, it is still needed.
* main/streams/streams.c:
Fixed a memory leak.
2003-11-27 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS:
BFN
* (PHP_4_3)
sapi/thttpd/config.m4:
MFH: - Fixed bug #26438 (error in thttpd SAPI installation)
* sapi/thttpd/config.m4:
- Fixed bug #26438 (error in thttpd SAPI installation)
2003-11-27 Ilia Alshanetsky <[email protected]>
* NEWS
ext/standard/image.c
ext/standard/php_image.h:
Added image_type_to_extension() function.
2003-11-27 Marcus Boerger <[email protected]>
* ZendEngine2/zend_API.c:
Convert objects to string if string is required by newer parameter parsing
since we do this for older parameter parsing does so too.
* ZendEngine2/zend_object_handlers.c:
The macro REPLACE_ZVAL_VALUE cannot be used since we only have zval *
writeobj. to allow it the api needs to be changed to zval **writeobj.
2003-11-27 Wez Furlong <[email protected]>
* win32/select.c:
re-implement the win32 select code.
The old code implicitly set any sockets into non-blocking mode,
and since there is no way to probe a socket to determine its
blocking status using the win32 API, this was a real pain in the ass.
The New implementation will hand off any sockets to winsock and
use the WaitForObject API in win32 to probe other types of handle.
* ext/com_dotnet/com_handlers.c:
fix win32 build - thanks Sebastian.
* ext/openssl/openssl.c
ext/openssl/xp_ssl.c:
Port liveness and SSL CA validation from 4.3 branch.
Make stream_select() work on ssl-enabled sockets again.
* main/php_streams.h
main/streams/transports.c
main/streams/xp_socket.c:
port "liveness" checks and a couple of other things from the 4.3 branch.
Liveness checks are used to validate persistent socket connects when they
are re-used.
* ext/standard/streamsfuncs.c:
initialize this one to be safe
2003-11-27 Marcus Boerger <[email protected]>
* ZendEngine2/zend_builtin_functions.c
tests/lang/bug26182.phpt:
Add a support function to check for property existance which is different
from checking a property from being empty/set.
Update test #26182.
* makerpm:
Remove problematic configure option
* makerpm:
- Fix requirements for older systems.
- Fix rpm build directory for the major distributions.
- Fix config dir.
- Rename package to php.
- Add gd extension.
- Support building of shared extensions.
- Build CLI only once.
2003-11-27 Uwe Steinmann <[email protected]>
* ext/dbase/dbase.c:
- set precision to 0 unless the field is of type N or I
* ext/dbase/dbf_rec.c:
- fixed indenting
2003-11-27 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
ext/standard/string.c:
MFH: Removed dead code.
* ext/standard/string.c:
Removed dead code.
2003-11-26 Greg Beaver <[email protected]>
* pear/PEAR.php
pear/package-PEAR.xml:
fix Bug #293 [Patch] PEAR_Error not calling static method callbacks for
error-handler
2003-11-26 Ard Biesheuvel <[email protected]>
* (PHP_4_3)
ext/interbase/interbase.c:
Fix crash bug reported by jani/ilia
2003-11-26 Derick Rethans <[email protected]>
* main/php_variables.c
main/rfc1867.c:
- Prevent registration of the variable when a zero-length is returned
from the sapi_input_filter.
2003-11-26 Marcus Boerger <[email protected]>
* tests/lang/bug26182.phpt:
In PHP5 this will create an implicit public property
* tests/lang/bug21820.phpt:
Errro message has changed
2003-11-26 Jani Taskinen <[email protected]>
* (PHP_4_3)
main/SAPI.c:
MFH: On error do not leave content_type_dup unitialized.
2003-11-25 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
NEWS
ext/pgsql/pgsql.c:
MFH: Fixed bug #25963 (PostgreSQL error message include \n characters).
2003-11-25 Jani Taskinen <[email protected]>
* ext/pcre/php_pcre.c:
style fix
2003-11-25 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
ext/domxml/php_domxml.c:
Replace fopen() inside domxml_xslt_process() with streams code to prevent
a possible crash and enforce safe_mode & open_basedir restrictions.
Revert workaround for bug #26384, which is due to a bug in libxslt.
Christian will commit a better workaround shortly.
2003-11-25 Sebastian Bergmann <[email protected]>
* ext/standard/parsedate.y:
'Fix' for bison 1.875.
2003-11-25 Jani Taskinen <[email protected]>
* (PHP_4_3)
tests/lang/bug26182.phpt:
MFH: for regression..this works in PHP 4