forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
12664 lines (9345 loc) · 333 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
2005-07-20 Jani Taskinen <[email protected]>
* NEWS:
there is not much point in putting entries of bugs fixed when bug only
existed in CVS and not in any release..
2005-07-20 Ilia Alshanetsky <[email protected]>
* (PHP_4_4)
NEWS
ext/standard/file.c
ext/standard/tests/file/bug32160.phpt
ext/standard/tests/file/bug32160.txt:
MFH: Fixed bug #32160 (copying a file into itself leads to data loss).
2005-07-20 Derick Rethans <[email protected]>
* NEWS:
- Fixed bug #33578 (strtotime() problem with "Oct17" format).
- Fixed problems with lone years in strtotime().
- Added functions to timelib to get a list of all abbreviations and
timezone
identifiers.
- Fixed problems with parsed dates that only have GMT offsets associated
with them.
- Fixed a Windows compile problem.
- Added special constants for different often used date formats
(DATE_ISO8601,
DATE_RFC822, DATE_RSS etc).
- Fixed date_default_timezone_get() to return the guessed timezone if none
was set yet with date_default_timezone_set().
- Added experimental support for Date/Timezone objects as per
specifications.
2005-07-20 Andrei Zmievski <[email protected]>
* NEWS
NEWS:
-** empty log message ***
2005-07-20 Jani Taskinen <[email protected]>
* ext/mysqli/tests/009.phpt
ext/mysqli/tests/036.phpt:
Skip tests in 64bit systems
* pear/tests/pear_dependency_checkExtension.phpt:
fixed skipif to really skip
2005-07-19 Marcus Boerger <[email protected]>
* tests/classes/array_access_013.phpt:
- Add test to verify all ArrayAccess methods can throw
* tests/classes/iterators_007.phpt:
- Add test to verify all iterator methods can throw
* ZendEngine2/zend_interfaces.c:
- Dont't warn in case an exception is pending - in this case it'd
superflous
2005-07-19 Wez Furlong <[email protected]>
* main/php_variables.c:
revert my last change; chasing ghosts.
* main/php_variables.c:
Don't crash when no treat_data method has been set in the sapi module
2005-07-19 Dmitry Stogov <[email protected]>
* NEWS
NEWS
ZendEngine2/zend_compile.c
ZendEngine2/zend_compile.c
ZendEngine2/zend_execute.c
ZendEngine2/zend_vm_execute.h
ZendEngine2/zend_vm_opcodes.h:
Fixed bug #33710 (ArrayAccess objects doen't initialize $this)
2005-07-19 Brad House <[email protected]>
* ext/mcve/mcve.c
ext/mcve/php_mcve.h:
\#if BRAD_0'd latest changes as requested until 5.1.0 release
2005-07-18 Jani Taskinen <[email protected]>
* ext/standard/reg.c
ext/standard/reg.c:
MFB4_4: Fix compile problem with --regex=system on some systems
2005-07-18 Brad House <[email protected]>
* (PHP_5_0)
ext/mcve/mcve.c
ext/mcve/php_mcve.h:
BACKPORT FROM HEAD: sync missing functions from libmonetra-5
* ext/mcve/mcve.c
ext/mcve/php_mcve.h:
sync missing functions from libmonetra-5
2005-07-18 Ilia Alshanetsky <[email protected]>
* NEWS
main/php_variables.c:
Revert cookie patch for BC reasons.
2005-07-18 Rasmus Lerdorf <[email protected]>
* ZendEngine2/zend_language_scanner.l:
Valgrind is unhappy that this is not initialized
2005-07-18 Andrei Zmievski <[email protected]>
* (PHP_4_4)
ext/standard/reg.c:
Use HAVE_REGEX_T_RE_MAGIC to fix compilation problem on systems where
re_magic is not provided publicly.
2005-07-18 Jani Taskinen <[email protected]>
* acinclude.m4:
fix macro
2005-07-18 Dmitry Stogov <[email protected]>
* ZendEngine2/zend_API.c
ZendEngine2/zend_API.h
ext/standard/dl.c
main/main.c:
Fixed bug in new module statrup mechanism
2005-07-18 Wez Furlong <[email protected]>
* main/streams/plain_wrapper.c:
compile before commit (gah!)
2005-07-18 Ilia Alshanetsky <[email protected]>
* ext/curl/interface.c:
Cleanup buffers on handle re-use.
2005-07-18 Wez Furlong <[email protected]>
* main/streams/plain_wrapper.c:
Apparently our pipe detection code just above this isn't foolproof.
Catch it here.
2005-07-18 Dmitry Stogov <[email protected]>
* ZendEngine2/tests/bug33558.phpt
ZendEngine2/tests/bug33558.phpt:
Fixed bug #33558 (warning with nested calls to functions returning by
reference)
* NEWS
NEWS
ZendEngine2/zend_execute.c
ZendEngine2/zend_vm_def.h
ZendEngine2/zend_vm_execute.h
ZendEngine2/zend_vm_opcodes.h
ZendEngine2/tests/bug33558.phpt:
Fixed bug #33558 (warning with nested calls to functions returning by
reference)
* ZendEngine2/zend_vm_def.h
ZendEngine2/zend_vm_execute.h
ZendEngine2/zend_vm_gen.php
ZendEngine2/zend_vm_opcodes.h:
Removed some compilation warnings.
2005-07-18 Ilia Alshanetsky <[email protected]>
* (PHP_4_4)
main/php_variables.c:
MFH: Fixed handling of HTTP requests with multiple Cookie headers.
* NEWS
main/php_variables.c:
Fixed handling of HTTP requests with multiple Cookie headers.
2005-07-18 Jani Taskinen <[email protected]>
* ZendEngine2/tests/bug33710.phpt:
typo
2005-07-18 Frank M. Kromann <[email protected]>
* ext/ming/config.w32:
Make sure we build with SWFPrebuilt.
2005-07-18 Marcus Boerger <[email protected]>
* run-tests.php:
- Show end of relay testing block
* ext/ming/ming.c:
- Provide distinction and distinct tests
2005-07-17 Marcus Boerger <[email protected]>
* ext/ming/config.m4
ext/ming/ming.c:
- Compatibility with ming 0.2a and 0.3a
* ZendEngine2/tests/bug33710.phpt:
- Add new test
2005-07-17 Ilia Alshanetsky <[email protected]>
* ZendEngine2/zend_compile.c:
Added missing init.
2005-07-17 Marcus Boerger <[email protected]>
* main/streams/plain_wrapper.c:
- Fix problem with debug mode on selective machines
* ext/xml/tests/bug26614.phpt
ext/xml/tests/bug26614_libxml.phpt:
- If you ask me both (expat and libxml) are not really accurate about byte
positions and columns...however the line number information is now
correct for both so for the moment we live with the situation that they
return different byte and column information.
2005-07-16 Ilia Alshanetsky <[email protected]>
* ext/curl/interface.c:
Added 2 missing cURL options available in all versions.
2005-07-16 Anantha Kesari H Y <[email protected]>
* netware/ApacheCore.imp
netware/BisonExtStandard.bat
netware/BisonFlexZend.bat
netware/ZendEngine2.mak
netware/build.bat
netware/buildext.bat
netware/buildlib.bat
netware/buildsapi.bat
netware/common.mif
netware/libpq-fe.h
netware/libpq.imp
netware/php-nw.bat
netware/php5apache.mak
netware/php5apache2filter.mak
netware/php5cli.mak
netware/phplib.imp
netware/phplib.mak
netware/phptest.ncf
netware/postgres_ext.h
netware/setbuild.bat
netware/time_nw.c
netware/tsrm.mak
netware/zend.mak:
NetWare can make use of the Autoconf based build system
* netware/libpq/libpq-fs.h:
libpq-fs.h this file is of no use
* (PHP_5_0)
netware/ApacheCore.imp
netware/BisonExtStandard.bat
netware/BisonFlexZend.bat
netware/ZendEngine2.mak
netware/build.bat
netware/buildext.bat
netware/buildlib.bat
netware/buildsapi.bat
netware/common.mif
netware/libpq-fe.h
netware/libpq.imp
netware/php-nw.bat
netware/php5apache.mak
netware/php5apache2filter.mak
netware/php5cli.mak
netware/phplib.imp
netware/phplib.mak
netware/phptest.ncf
netware/postgres_ext.h
netware/setbuild.bat
netware/time_nw.c
netware/tsrm.mak
netware/zend.mak:
NetWare can make use the AutoConf based build system
* (PHP_5_0)
netware/libpq/libpq-fs.h:
removing the redundant file libpq-fs.h
* (PHP_5_0)
sapi/apache2filter/php_apache.h
sapi/apache2filter/sapi_apache2.c:
sapi/apache2filter/php_apache.h
Removing redundant CLIB_STAT_PATCH
sapi/apache2filter/sapi_apache2.c
Removing redundant CLIB_STAT_PATCH
-- Kamesh
* main/fopen_wrappers.c
main/main.c:
main/fopen_wrappers.c
NetWare file names are case insensitive
main/main.c
NetWare has no sendmail binary. It uses the smart host mailing code
avaiolable in php distro. Could not find a better place to put this than
main/main.c.
-- Kamesh
* (PHP_5_0)
main/fopen_wrappers.c
main/main.c
main/php_open_temporary_file.c
main/php_streams.h
main/safe_mode.c:
main/fopen_wrappers.c
NetWare file names are case insensitive
main/main.c
NetWare has no sendmail binary. It uses the smart host mailing code
avaiolable in php distro. Could not find a better place to put this than
main/main.c.
main/php_open_temporary_file.c,v
Removed the unused variable in NetWare block.
main/php_streams.h
Removing the redundant CLIB_STAT_PATCH
main/safe_mode.c
NetWare has no uid.
-- Kamesh
* (PHP_5_0)
TSRM/TSRM.c
TSRM/tsrm_virtual_cwd.c
TSRM/tsrm_virtual_cwd.h:
TSRM/tsrm_virtual_cwd.c
Removing the redundant CLIB_STAT_PATCH
TSRM/tsrm_virtual_cwd.h
Removing the redundant CLIB_STAT_PATCH
TSRM/TSRM.c
Netware pthreads support is good enough. So removing all these fixes of
old times.
-- Kamesh
* TSRM/TSRM.c:
Netware pthreads support is good enough. So removing all these fixes of old
times.
-- Kamesh
* (PHP_5_0)
ext/standard/string.c:
NetWare specific dirname fixes.
--Kamesh
2005-07-15 George Schlossnagle <[email protected]>
* ext/curl/interface.c
ext/curl/php_curl.h:
Darwin seems to like this much better.
* ext/xsl/php_xsl.c
ext/xsl/xsl_fe.h:
Darwin seems to like this arrangement much better.
2005-07-15 Sara Golemon <[email protected]>
* ext/standard/ftp_fopen_wrapper.c:
Pass context parameter through to xport_create
2005-07-15 Anantha Kesari H Y <[email protected]>
* ext/standard/file.h
ext/standard/string.c
ext/standard/syslog.c:
ext/standard/file.h NetWare LibC has fnmatch and realpath implemented.
ext/standard/syslog.c Except LOG_SYSLOG other syslog macros are supported
by NetWare LibC.
ext/standard/string.c NetWare fix for dirname
-- Kamesh
* (PHP_5_0)
ext/standard/file.h
ext/standard/filestat.c
ext/standard/link.c
ext/standard/pageinfo.c
ext/standard/syslog.c:
ext/standard/file.h NetWare LibC has fnmatch and realpath implemented.
ext/standard/filestat.c Removing redundant CLIB_STAT_PATCH and fixing some
NetWare specific stat structure.
ext/standard/link.c Removing redundant CLIB_STAT_PATCH.
ext/standard/pageinfo.c Removing redundant CLIB_STAT_PATCH and fixing some
NetWare specific stat structure.
ext/standard/syslog.c Except LOG_SYSLOG NetWare LibC has other macros
defined.
-- Kamesh
2005-07-14 Ilia Alshanetsky <[email protected]>
* ext/standard/http_fopen_wrapper.c:
Properly recognize redirect code 303.
When encountering redirect on POST request follow browsers and cURL and
perform GET on the specified location field.
2005-07-14 Andi Gutmans <[email protected]>
* configure.in
ZendEngine2/zend.h
main/php_version.h:
- Back to -dev
* (php_5_1_0b3)
NEWS
configure.in
ZendEngine2/zend.h
main/php_version.h:
- Beta 3
2005-07-14 Jani Taskinen <[email protected]>
* (php_5_1_0b3)
acinclude.m4
configure.in
main/php_network.h:
- Fixed cacheing bug in PHP_SOCKADDR_SA_LEN macro
- Removed duplicate sa_len check from configure.in
- Unified the sockaddr tests into PHP_SOCKADDR_CHECKS macro
* acinclude.m4:
Fix the re_magic test by adding missing #include <sys/types.h>
2005-07-13 Sara Golemon <[email protected]>
* ext/standard/ftp_fopen_wrapper.c:
Route ftp:// wrapper via transports layer.\nFix typo in datastream crypto
startup
2005-07-13 Ilia Alshanetsky <[email protected]>
* (PHP_4_4)
NEWS
main/rfc1867.c
main/rfc1867.c:
MFH: Fixed bug #33673 (Added detection for partially uploaded files).
* NEWS
main/rfc1867.c:
Fixed bug #33673 (Added detection for partially uploaded files).
2005-07-13 Jani Taskinen <[email protected]>
* acinclude.m4:
typofix
* acinclude.m4:
- Added check whether re_magic exists in struct regex_t
* php.ini-dist
php.ini-recommended:
fix typo
2005-07-12 Andi Gutmans <[email protected]>
* (php_5_1_0b3)
NEWS:
- Update Beta 3 date
2005-07-12 Antony Dovgal <[email protected]>
* (php_5_1_0b3)
ext/mysqli/mysqli_fe.c
ext/mysqli/php_mysqli.h:
add forgotten ifdefs, fix #33667 (mysqli doesn't compile)
2005-07-12 Andi Gutmans <[email protected]>
* NEWS:
- Update News
* configure.in
ZendEngine2/zend.h
main/php_version.h:
- Back to -dev
* (php_5_1_0b3)
configure.in
ZendEngine2/zend.h
main/php_version.h:
- Beta 3
2005-07-12 Ilia Alshanetsky <[email protected]>
* NEWS
ext/standard/file.c:
Added support for LOCK_EX flag for file_put_contents().
* (php_5_1_0b3)
main/SAPI.c
main/main.c:
Fixed double-free in the digest authentication handling.
2005-07-12 Georg Richter <[email protected]>
* (php_5_1_0b3)
ext/mysqli/mysqli_nonapi.c
ext/mysqli/php_mysqli.h:
changed version dependency for charset functions
2005-07-12 Antony Dovgal <[email protected]>
* (php_5_1_0b3)
tests/lang/bug22367.phpt
tests/lang/bug22510.phpt:
fix tests that started to fail after the last change in ZE
(noticed by Nuno)
2005-07-12 Georg Richter <[email protected]>
* ext/mysqli/mysqli_nonapi.c
ext/mysqli/php_mysqli.h:
removed charset structure. libmysql now provides a function
mysqli_get_character_set_info (Vers. 5.0.10)
2005-07-12 Dmitry Stogov <[email protected]>
* NEWS
NEWS
NEWS
Zend/zend_execute_API.c
ZendEngine2/zend_execute_API.c
ZendEngine2/zend_execute_API.c:
Fixed bug #33156 (cygwin version of setitimer doesn't accept ITIMER_PROF).
(Nuno)
2005-07-11 Ilia Alshanetsky <[email protected]>
* ZendEngine2/zend_vm_def.h
ZendEngine2/zend_vm_execute.h:
Make references misuse emit E_NOTICE rather E_STRICT to be compatible with
PHP 4.4.0
2005-07-11 Dmitry Stogov <[email protected]>
* (PHP_4_4)
NEWS
ext/standard/array.c:
Fixed bug #31158 (array_splice on $GLOBALS crashes)
2005-07-11 Derick Rethans <[email protected]>
* (PHP_4_4)
configure.in
main/php_version.h:
- Back to -dev.
* (PHP_4_4)
NEWS
configure.in
main/php_version.h:
- Go with 4.4.0.
2005-07-11 Jon Parise <[email protected]>
* run-tests.php:
Removing the automake-related output. The build no longer uses automake.
While I'm here, rewrite the PHP_AUTOCONF-related code to more closely
match the conventions used elsewhere in this section. The result should
be functionally the same as before.
2005-07-11 Ilia Alshanetsky <[email protected]>
* ext/mime_magic/mime_magic.c:
Compiler warning fix.
2005-07-10 Jani Taskinen <[email protected]>
* NEWS
ext/dbx/.cvsignore
ext/dbx/CREDITS
ext/dbx/INSTALL
ext/dbx/config.m4
ext/dbx/config.w32
ext/dbx/dbx.c
ext/dbx/dbx.dsp
ext/dbx/dbx.h
ext/dbx/dbx_fbsql.c
ext/dbx/dbx_fbsql.h
ext/dbx/dbx_mssql.c
ext/dbx/dbx_mssql.h
ext/dbx/dbx_mysql.c
ext/dbx/dbx_mysql.h
ext/dbx/dbx_oci8.c
ext/dbx/dbx_oci8.h
ext/dbx/dbx_odbc.c
ext/dbx/dbx_odbc.h
ext/dbx/dbx_pgsql.c
ext/dbx/dbx_pgsql.h
ext/dbx/dbx_sqlite.c
ext/dbx/dbx_sqlite.h
ext/dbx/dbx_sybasect.c
ext/dbx/dbx_sybasect.h
ext/dbx/howto_extend_dbx.html
ext/dbx/package.xml
ext/dbx/php_dbx.h
ext/dbx/tests/.cvsignore
ext/dbx/tests/001.phpt
ext/dbx/tests/002.phpt
ext/dbx/tests/003.phpt
ext/dbx/tests/004.phpt
ext/dbx/tests/005.phpt
ext/dbx/tests/006.phpt
ext/dbx/tests/007.phpt
ext/dbx/tests/008.phpt
ext/dbx/tests/009.phpt
ext/dbx/tests/010.phpt
ext/dbx/tests/dbx_test.p
ext/dbx/tests/dbx_test.pgsql.script
ext/dbx/tests/dbx_test.script
ext/dbx/tests/skipif.inc
ext/ircg/.cvsignore
ext/ircg/CREDITS
ext/ircg/Makefile.frag
ext/ircg/README.txt
ext/ircg/config.m4
ext/ircg/ircg.c
ext/ircg/ircg.php
ext/ircg/ircg_common.c
ext/ircg/ircg_scanner.c
ext/ircg/ircg_scanner.re
ext/ircg/ircg_thttpd.c
ext/ircg/php_ircg.h
ext/ircg/php_ircg_alloc.h
ext/ircg/php_ircg_cache.c
ext/ircg/php_ircg_cache.h
ext/ircg/php_ircg_conversion.c
ext/ircg/php_ircg_conversion.h
ext/ircg/php_ircg_error.c
ext/ircg/php_ircg_error.h
ext/ircg/php_ircg_formats.h
ext/ircg/php_ircg_hash.h
ext/ircg/php_ircg_lock.h
ext/ircg/php_ircg_private.h
ext/ircg/php_ircg_smart_str.h
ext/ircg/php_ircg_tokenizer.c
ext/ircg/php_ircg_tokenizer.h:
- Moved ext/dbx and ext/ircg to PECL.
2005-07-09 Jani Taskinen <[email protected]>
* run-tests.php:
show ugly full path for failed redirected tests
* ext/ldap/ldap.c:
- No need to use convert_to_string_ex() when dealing with strings
* NEWS
ext/ldap/ldap.c:
- Fixed bug #33588 (LDAP: RootDSE query not possible).
2005-07-08 Jani Taskinen <[email protected]>
* run-tests.php:
Sanitazione
2005-07-08 Marcus Boerger <[email protected]>
* main/snprintf.h:
- Fix *printf(%lld) under windows
2005-07-08 Antony Dovgal <[email protected]>
* ext/standard/head.c:
fix tsrm build
2005-07-08 Ilia Alshanetsky <[email protected]>
* ext/standard/head.c:
Missing bit of the previous patch.
* ext/standard/head.c:
Fixed compiler warning.
2005-07-08 Antony Dovgal <[email protected]>
* ext/standard/head.c:
make use of T token
* NEWS
ext/standard/head.c:
fix #33597 (setcookie() "expires" date format doesn't comply with RFC)
2005-07-08 Jani Taskinen <[email protected]>
* ext/mysqli/tests/041.phpt:
Make sure we get a WARNING and not an ERROR here :)
* ZendEngine2/tests/unset_cv05.phpt
ZendEngine2/tests/unset_cv06.phpt
tests/basic/bug20539.phpt:
fix test when session.save_handler is "user"
2005-07-08 Ilia Alshanetsky <[email protected]>
* NEWS
ext/pgsql/pgsql.c
ext/pgsql/php_pgsql.h:
Added pg_fetch_all_columns() function to fetch all values of a column from
a result cursor.
2005-07-07 Jani Taskinen <[email protected]>
* acinclude.m4:
- Fixed stupid bug in PHP_INSTALL_HEADERS() macro: "foo bar" != foo bar
- ext/date/lib/timelib_config.h is also installed now
2005-07-07 Dmitry Stogov <[email protected]>
* tests/classes/array_access_001.phpt
tests/classes/array_access_002.phpt:
Fixed bug #33512 (Add missing support for isset()/unset() overloading to
complement the property get/set methods). Now empty($obj[...]) works
proper but in addition it may call offsetGet() method.
* NEWS
ZendEngine2/zend.h
ZendEngine2/zend_API.c
ZendEngine2/zend_API.h
ZendEngine2/zend_compile.c
ZendEngine2/zend_compile.h
ZendEngine2/zend_object_handlers.c
ZendEngine2/zend_objects.c
ZendEngine2/zend_reflection_api.c:
Fixed bug #33512 (Add missing support for isset()/unset() overloading to
complement the property get/set methods)
2005-07-07 Anantha Kesari H Y <[email protected]>
* ZendEngine2/zend_stream.c
ZendEngine2/zend_stream.c:
zend_stream_getc uses fread internally. NetWare LibC fread reads 4(Which I
believe EOT) for EOF(^D) character. This happens when fread is asked to
read one and only character as is the case with cl interactive mode.
-- Kamesh
2005-07-07 Antony Dovgal <[email protected]>
* NEWS
ext/standard/string.c:
fix #33605 (substr_compare() crashes with negative offset & length)
2005-07-07 Dmitry Stogov <[email protected]>
* NEWS
ZendEngine2/zend_execute_API.c
ZendEngine2/zend_hash.c
ZendEngine2/zend_hash.h
ZendEngine2/tests/bug28072.phpt:
Fixed bug #28072 (static array with some constant keys will be incorrectly
ordered).
2005-07-07 Wez Furlong <[email protected]>
* run-tests.php:
sort redirected tests
* run-tests.php:
Fix 2 bugs:
- summary is only displayed if 2 or more tests were detected
- error out of a bogus test name is passed in
2005-07-07 Rob Richards <[email protected]>
* ext/dom/element.c:
Allow NULL namespaceURI for getAttributeNodeNS
2005-07-07 Jani Taskinen <[email protected]>
* NEWS:
reorder. Also: Documentation belongs elsewhere :)
2005-07-07 Anantha Kesari H Y <[email protected]>
* (PHP_5_0)
TSRM/tsrm_virtual_cwd.c:
1)gwtcwd of NetWare LibC gives a cwd with a volume information.
So using getcwdpath which gives with volume information.
getcwdpath gives with directory seperator as \ which is against our
DEFAULT_SLASH of /.
So finding and replacing \ with /
2)NetWare file path normalization code in virtual_file_ex.
-- Kamesh
* TSRM/tsrm_virtual_cwd.h:
Reverting the DEFAULT_SLASH to / as it breaks the FreeBSD derived function
of NetWare LibC like glob.
-- Kamesh
* TSRM/tsrm_virtual_cwd.c:
gwtcwd of NetWare LibC gives a cwd with a volume information.
So using getcwdpath which gives with volume information.
getcwdpath gives with directory seperator as \ which is against our
DEFAULT_SLASH of /. So finding and replacing \ with /
-- Kamesh
* TSRM/tsrm_virtual_cwd.h:
COPY_WHEN_ABSOLUTE is not needed for NetWare.
-- Kamesh
* (PHP_5_0)
TSRM/tsrm_virtual_cwd.h:
COPY_WHEN_ABSOLUTE is not needed for NetWare.
NetWare can understand the file paths with volumnename with a colon,
starting with / or \\ as absolute paths.
-- Kamesh
2005-07-07 Dmitry Stogov <[email protected]>
* NEWS
acinclude.m4
sapi/cgi/config9.m4
sapi/cli/config.m4:
Fixed support for shared extensions on AIX
2005-07-07 Rasmus Lerdorf <[email protected]>
* ext/simplexml/simplexml.c:
Missing closing folding marker
2005-07-06 Edin Kadribasic <[email protected]>
* ext/zlib/php_zlib.def:
Export missing symbol
2005-07-06 Wez Furlong <[email protected]>
* run-tests.php:
Add a new kind of test to the test harness. REDIRECTTEST sections allow an
extension to piggy-back on the tests defined under another dir and run
those.
Example of its use follows shortly with pdo tests.
2005-07-05 Jani Taskinen <[email protected]>
* ext/standard/incomplete_class.c
ext/standard/php_incomplete_class.h:
- Fixed crash in serialize() + classes. (64bit only)
2005-07-05 Derick Rethans <[email protected]>
* NEWS:
- Fixed bug #33578 (strtotime() doesn't understand "11 Oct" format).
(Derick)
2005-07-05 Ilia Alshanetsky <[email protected]>
* NEWS
ext/standard/streamsfuncs.c
ext/standard/tests/file/stream_get_line.phpt:
Fixed crash inside stream_get_line() when length parameter equals 0.
2005-07-05 Edin Kadribasic <[email protected]>
* ext/pgsql/pgsql.c:
Properly detect when the copy command fails
2005-07-05 Dmitry Stogov <[email protected]>
* main/main.c
main/main.c:
Fixed crash in ext\standard\tests\general_functions\bug32647.php on Windows
* ext/session/tests/bug31454.phpt
ext/session/tests/bug31454.phpt:
Fixed test file
2005-07-05 Derick Rethans <[email protected]>
* (PHP_4_4)
NEWS
ext/pgsql/pgsql.c:
- MFH: Fixed memory corruption in pg_copy_from() in case the as_null
parameter
was passed. (Derick)
* (PHP_5_0)
NEWS
ext/pgsql/pgsql.c:
- MFH: Fixed memory corruption in pg_copy_from() in case the as_null
parameter was
passed.
* NEWS
ext/pgsql/pgsql.c:
- Fixed memory corruption in pg_copy_from() in case the as_null parameter
was
passed. (Derick)
2005-07-04 Jon Parise <[email protected]>
* run-tests.php:
If the PHP_AUTOCONF and PHP_AUTOMAKE environmental variables are set, use
them when describing the build environment.
Support for these variables was originally added to build/build2.mk:1.36.
As a side note, the build system uses PHP_AUTOHEADER. Perhaps it should
be listed on its own in the build environment for completeness, despite it
being a component of the autoconf package.
2005-07-04 Dmitry Stogov <[email protected]>
* ZendEngine2/zend_compile.h
ZendEngine2/zend_execute.c
ZendEngine2/zend_language_parser.y
ZendEngine2/zend_vm_def.h
ZendEngine2/zend_vm_execute.h
ZendEngine2/zend_vm_opcodes.h:
Fixed SIGSEGV on 'global ${"{$blah}_ID"};'
2005-07-04 Jani Taskinen <[email protected]>
* ext/session/tests/001.phpt
ext/session/tests/003.phpt
ext/session/tests/006.phpt
ext/session/tests/007.phpt
ext/session/tests/008-php4.2.3.phpt
ext/session/tests/009.phpt
ext/session/tests/012.phpt
ext/session/tests/013.phpt
ext/session/tests/014.phpt
ext/session/tests/015.phpt
ext/session/tests/017.phpt
ext/session/tests/018.phpt
ext/session/tests/019.phpt
ext/session/tests/020.phpt
ext/session/tests/021.phpt
ext/session/tests/bug24592.phpt
ext/session/tests/bug26862.phpt:
Make sure files-save handler is used always
2005-07-04 Dmitry Stogov <[email protected]>
* NEWS
NEWS
sapi/aolserver/aolserver.c
sapi/aolserver/aolserver.c
sapi/apache2filter/apache_config.c
sapi/apache2filter/apache_config.c
sapi/apache2handler/apache_config.c
sapi/apache2handler/apache_config.c
sapi/nsapi/nsapi.c
sapi/nsapi/nsapi.c:
Fixed bug #33520 (crash if safe_mode is on and session.save_path is
changed)
2005-07-04 Jani Taskinen <[email protected]>
* tests/lang/023.phpt:
UTC is better
2005-07-04 Dmitry Stogov <[email protected]>
* ext/standard/tests/array/bug31158.phpt
ext/standard/tests/array/bug31158.phpt:
Fixed bug #31158 (array_splice on $GLOBALS crashes)
* NEWS
NEWS
ZendEngine2/zend_API.h
ZendEngine2/zend_execute_API.c
ext/standard/array.c
ext/standard/array.c
ext/standard/tests/array/bug31158.phpt:
Fixed bug #31158 (array_splice on $GLOBALS crashes)
2005-07-04 Jani Taskinen <[email protected]>
* tests/lang/023.phpt:
fix test
2005-07-04 Derick Rethans <[email protected]>
* NEWS:
- Fixed bug #33562 (date("") crashes).
2005-07-03 Derick Rethans <[email protected]>
* NEWS:
- Fixed bug #33536 (strtotime defaults to now even on non time string).
* ext/standard/basic_functions.c
ext/standard/datetime.c:
- Reimplemented time(), getdate() and localtime() functions with new
datetime