forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
1169 lines (883 loc) · 31.1 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-01-19 Jani Taskinen <[email protected]>
* buildconf
build/build2.mk:
Added --debug option to buildconf
* build/build2.mk
build/build2.mk
build/build2.mk
build/buildcheck.sh
build/buildcheck.sh
build/buildcheck.sh:
Revert the multiple autoconf versions patch
2005-01-19 Ilia Alshanetsky <[email protected]>
* win32/sendmail.c:
Stricter cc header check.
2005-01-19 Derick Rethans <[email protected]>
* build/libtool.m4:
- Add the patched libtool.m4 from snaps so that Jani can play with it.
2005-01-19 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS
NEWS
NEWS:
BFN
* (PHP_4_3)
win32/sendmail.c
win32/sendmail.c:
MFH: - Fixed bug #28976 (use From: from headers if sendmail_from is empty)
* win32/sendmail.c:
- Fixed bug #28976 (use From: from headers if sendmail_from is empty)
* acinclude.m4
configure.in:
- Fix the pic patch
* ZendEngine2/zend_object_handlers.c:
- Fixed bug #29183 (Undefined symbol zend_check_private with Solaris CC)
* (PHP_5_0)
run-tests.php:
MFH: - Fixed bug #29136 (make test - libtool failure on MacOSX)
* run-tests.php:
- Fixed bug #29136 (make test - libtool failure on MacOSX)
2005-01-19 Marcus Boerger <[email protected]>
* ZendEngine2/zend_ini_parser.y:
- Fix memleak
2005-01-19 Jani Taskinen <[email protected]>
* (PHP_4_3)
ext/ldap/ldap.c:
MFH: - WS & CS fixes
MFH: - php_error -> php_error_docref
MFH: - Removed pointless checks (array_init, emalloc, etc.)
MFH: - Force ldapv3 for ldap_start_tls()
* ext/ldap/ldap.c:
- ldap_start_tls() requires ldapv3 protocol -> force it
2005-01-18 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
ext/imap/php_imap.c
ext/imap/php_imap.c:
MFH: Fixed bug #31142 (crash, memory leak and data loss by
imap_mail_compose).
* ext/imap/php_imap.c:
Fixed bug #31142 (crash, memory leak and data loss by imap_mail_compose).
2005-01-18 Frank M. Kromann <[email protected]>
* ext/mssql/php_mssql.h:
Set the MSSQL_VERSION to FreeTDS when that lib is used
* ext/mssql/config.w32:
Rename php_freetds.dll to php_dblib.dll (still using the freetds libs).
Allow the build of both versions in the same process
2005-01-18 Antony Dovgal <[email protected]>
* (PHP_4_3)
ext/odbc/config.m4
ext/odbc/config.m4:
MFH: add checks for libs & headers required by IBM DB2
* ext/odbc/config.m4:
add checks for libs & headers required by IBM DB2
2005-01-18 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
NEWS
NEWS
ext/imap/php_imap.c
ext/imap/php_imap.c:
MFH: Fixed bug #31480 (Possible infinite loop in imap_mail_compose()).
* ext/imap/php_imap.c:
Fixed bug #31480 (Possible infinite loop in imap_mail_compose()).
* (PHP_4_3)
NEWS
NEWS
ext/standard/string.c
ext/standard/string.c:
MFH: Fixed bug #31479 (Fixed crash in chunk_split(), when chunklen >
strlen).
* ext/standard/string.c:
Fixed bug #31479 (Fixed crash in chunk_split(), when chunklen > strlen).
2005-01-18 Jani Taskinen <[email protected]>
* (PHP_4_3)
ext/session/mod_files.c
ext/session/mod_files.c:
MFH: - Use FD_CLOEXEC with fcntl() and make sure it is always defined
* ext/session/mod_files.c:
- Make sure FD_CLOEXEC is always defined.
2005-01-18 Antony Dovgal <[email protected]>
* (PHP_4_3)
NEWS
NEWS
ext/odbc/php_odbc.c
ext/odbc/php_odbc.c:
MFH: fix bug #30430 (odbc_next_result() doesn't bind values and that
results in segfault)
fix protos
* ext/odbc/php_odbc.c:
fix bug #30430 (odbc_next_result() doesn't bind values and that results in
segfault)
fix protos
2005-01-18 Dmitry Stogov <[email protected]>
* ZendEngine2/zend_compile.c:
Fixed patch for bug #31478 (SegFault/Memory Leak with empty())
2005-01-18 Jani Taskinen <[email protected]>
* tests/lang/bug30726.phpt:
- Sanitize output
* ext/standard/tests/serialize/bug31402.phpt:
1.1.4;
Add test for bug #31402
2005-01-18 Dmitry Stogov <[email protected]>
* (PHP_5_0)
NEWS:
changed title of the bugreport
2005-01-18 Jani Taskinen <[email protected]>
* (PHP_4_3)
ext/standard/url_scanner_ex.c
ext/standard/var_unserializer.c:
- Files generated with re2c 0.9.2
* (PHP_4_3)
ext/standard/basic_functions.c
ext/standard/url_scanner_ex.re:
MFH: - Move hash table destruction to proper location
* (PHP_5_0)
ext/standard/var_unserializer.c:
Touch generated file.
* ext/standard/var_unserializer.c:
Touch the generated file.
2005-01-18 Dmitry Stogov <[email protected]>
* ext/standard/basic_functions.c
ext/standard/tests/general_functions/bug31190.phpt:
Fixed bug #31190 (exceptions in call_user_func_array())
* ext/standard/tests/general_functions/bug31190.phpt
ext/standard/tests/general_functions/bug31190.phpt:
file bug31190.phpt was initially added on branch PHP_5_0.
* (PHP_5_0)
NEWS
ext/standard/basic_functions.c:
Fixed bug #31190 (iexceptions in call_user_func_array())
2005-01-18 Magnus Määttä <[email protected]>
* (PHP_4_3)
tests/lang/bug30726.phpt
tests/lang/bug30726.phpt:
Add test case for bug #30726.
* tests/lang/bug30726.phpt:
1.1.4;
Add test case for bug #30726.
2005-01-18 Dmitry Stogov <[email protected]>
* ZendEngine2/zend_execute.c:
Fixed bug #28444 (Cannot access undefined property for object with
overloaded property access).
* (PHP_5_0)
NEWS
ZendEngine2/zend_execute.c:
Fixed bug #28444 (Cannot access undefined property for object with
overloaded property access). (Dmitry)
2005-01-18 Frank M. Kromann <[email protected]>
* ext/mssql/config.w32:
use the static dblib.lib to avoid the need for extra dll's
* ext/mssql/config.w32:
add --with-freetds option to win32 build.
TODO make it work when both mssql and freetds is included or bail out with
an error
* ext/mssql/php_mssql.c
ext/mssql/php_mssql.h:
make the mssql extension work with freetds on win32
2005-01-18 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
NEWS
NEWS
Zend/zend_operators.h
ZendEngine2/zend_operators.h:
MFH: Fixed bug #30726 (-.1 like numbers are not being handled correctly).
* ZendEngine2/zend_operators.h:
Fixed bug #30726 (-.1 like numbers are not being handled correctly).
* (PHP_4_3)
NEWS
ext/standard/file.c:
Fixed bug #31580 (fgetcsv() problematic with "" escape sequences).
2005-01-17 Antony Dovgal <[email protected]>
* ext/odbc/php_odbc.c:
fix weird DB2 issue:
DB2's SQLDataSources() returns _max available_ length of result string
instead of
_real_ length and that results in strings a-la "\0 "
2005-01-17 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS
Zend/zend_language_scanner.l:
MFZE2: - Fixed bug #31444 (Memory leak in zend_language_scanner.c)
* (PHP_5_0)
NEWS
ZendEngine2/zend_language_scanner.l:
MFH: - Fixed bug #31444 (Memory leak in zend_language_scanner.c)
* ZendEngine2/zend_language_scanner.l:
- Fixed bug #31444 (Memory leak in zend_language_scanner.c)
* (PHP_4_3)
ext/gd/gd.c
ext/gd/gd.c:
MFH: - Added some sanity checks by changing to the parameter parsing API
* ext/gd/gd.c:
- Added some sanity checks by changing to the parameter parsing API
2005-01-17 Christian Stocker <[email protected]>
* (PHP_5_0)
ext/xsl/php_xsl.c
ext/xsl/php_xsl.h:
revert these 2 files... shouldn't have been comitted ..
* ext/xsl/xsltprocessor.c:
fix protos (by Mehdi Achour )
2005-01-17 Antony Dovgal <[email protected]>
* ext/odbc/php_odbc.c:
fix leak appearing when odbc_errormsg() got invalid resource
2005-01-17 Joe Orton <[email protected]>
* (PHP_4_3)
sapi/apache2handler/sapi_apache2.c
sapi/apache2handler/sapi_apache2.c:
MFH - Fixed bug #31519: Set r->status_line to SAPI-provided status-line.
* sapi/apache2handler/sapi_apache2.c:
Fixed bug #31519: Set r->status_line to SAPI-provided status-line.
2005-01-17 Stefan Esser <[email protected]>
* ext/standard/var_unserializer.c
ext/standard/var_unserializer.c
ext/standard/var_unserializer.re
ext/standard/var_unserializer.re:
Fix compiler warning.
2005-01-16 Stefan Esser <[email protected]>
* (PHP_5_0)
ext/standard/var_unserializer.c
ext/standard/var_unserializer.re:
if 2 of 3 tests are okay still do the 3rd test !
2005-01-16 Zak Greant <[email protected]>
* ext/mysqli/mysqli_driver.c
ext/mysqli/mysqli_embedded.c
ext/mysqli/mysqli_exception.c
ext/mysqli/mysqli_report.h
ext/mysqli/mysqli_warning.c
ext/mysqli/php_mysqli.h:
Added standard emacs and vim modelines
2005-01-16 Moriyoshi Koizumi <[email protected]>
* (PHP_4_3)
ext/mbstring/mbstring.c:
- MFH: Fix a critical bug that request-local settings leak to another
request.
* (PHP_5_0)
ext/mbstring/mb_gpc.c
ext/mbstring/mb_gpc.h
ext/mbstring/mbstring.c:
-MFH: Fix a critical bug that request-local settings leak to another
request.
* ext/mbstring/mb_gpc.c
ext/mbstring/mb_gpc.h
ext/mbstring/mbstring.c:
- Fix a critical bug that request-local settings leak to another request.
2005-01-16 Stanislav Malyshev <[email protected]>
* (PHP_4_3)
Zend/zend_execute.c:
another fix for overloaded objects
2005-01-15 Andi Gutmans <[email protected]>
* (PHP_5_0)
ZendEngine2/zend_API.c:
- Fix WS
2005-01-15 Stefan Esser <[email protected]>
* ext/standard/var_unserializer.c
ext/standard/var_unserializer.re:
and use it...
* TSRM/tsrm_virtual_cwd.c:
finally use what we calculated
* ext/standard/php_var.h
ext/standard/var_unserializer.c
ext/standard/var_unserializer.re:
Restore unserialize() speed
2005-01-15 Jani Taskinen <[email protected]>
* ext/standard/streamsfuncs.c:
CS fix
* ext/gd/gd.c:
ws fix
2005-01-15 Andi Gutmans <[email protected]>
* (PHP_5_0)
ZendEngine2/zend_API.c:
- Change to using DL_UNLOAD macro.
* ZendEngine2/zend_API.c:
- Unload on MAC OS X (shouldn't be a reason not to)
2005-01-14 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS
NEWS
ext/gd/gd.c
ext/gd/gd.c:
MFH: - Fixed bug #31060 (imageftbbox() does not use linespacing parameter)
* ext/gd/gd.c:
- Fixed bug #31060 (imageftbbox() does not use linespacing parameter)
* (PHP_4_3)
NEWS
NEWS
ext/gd/gd.c
ext/gd/gd.c:
MFH: - Fixed bug #30120 (imagettftext() and imagettfbbox() accept too many
parameters)
* ext/gd/gd.c:
- Fixed bug #30120 (imagettftext() and imagettfbbox() accept too many
parameters)
* (PHP_5_0)
main/php.h
sapi/apache_hooks/php_apache.c:
MFH: - Fix another generated header include
* main/php.h
sapi/apache_hooks/php_apache.c:
- Fix another generated header include
2005-01-14 Dmitry Stogov <[email protected]>
* ext/standard/streamsfuncs.c:
Fixed SIGSEGV in ext/standard/tests/network/tcp4loop.phpt and
ext/standard/tests/network/unixloop.phpt
* ZendEngine2/zend_execute.c
ZendEngine2/zend_vm_def.h
ZendEngine2/zend_vm_execute.h
ZendEngine2/zend_vm_opcodes.h
ZendEngine2/tests/bug31098.phpt:
Restore behavior of $str["str"]. (Now $str["str"] is equivalent to $str[0]
again)
* (PHP_5_0)
ZendEngine2/tests/bug31098.phpt:
Path -> pattern
* (PHP_5_0)
ext/standard/streamsfuncs.c:
Fixed SIGSEGV with ext/standard/tests/network/tcp4loop.phpt and
ext/standard/tests/network/unixloop.phpt
* (PHP_5_0)
ZendEngine2/zend_execute.c
ZendEngine2/tests/bug31098.phpt:
Revert to old behavior of $str["str"]. ($str["str"] is equivalent of
$str[0])
2005-01-14 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS:
BFN
2005-01-13 Ard Biesheuvel <[email protected]>
* (PHP_4_3)
ext/interbase/interbase.c:
Fixed unregistered bug: corrupted 32-bit LONGs on 64-bit systems
2005-01-13 Wez Furlong <[email protected]>
* (PHP_5_0)
acinclude.m4:
MFH the extension dep macro (which is a NOP)
so that pecl extensions with deps can build against head and 5.0.x
2005-01-13 Dmitry Stogov <[email protected]>
* ZendEngine2/zend_execute.c
ZendEngine2/zend_execute.c:
Additional fix for fix of bug #29883
2005-01-13 Wez Furlong <[email protected]>
* ext/odbc/config.m4
ext/odbc/php_odbc.c
ext/odbc/php_odbc_includes.h:
Add support for ODBCRouter
2005-01-12 Dmitry Stogov <[email protected]>
* ZendEngine2/zend_execute.c
ZendEngine2/zend_execute.c
ZendEngine2/zend_vm_def.h
ZendEngine2/zend_vm_execute.h
ZendEngine2/zend_vm_opcodes.h
ZendEngine2/tests/bug31098.phpt
ZendEngine2/tests/bug31098.phpt:
Fixed bug #31098 (isset false positive)
2005-01-11 Rasmus Lerdorf <[email protected]>
* (PHP_4_3)
NEWS:
Should probably note this
2005-01-11 Moriyoshi Koizumi <[email protected]>
* (PHP_5_0)
NEWS:
- I tend to write opposite things these days :P
* (PHP_5_0)
ZendEngine2/zend_execute.c
ZendEngine2/tests/bug31098.phpt:
- MFH: fix for bug #31098.
* ZendEngine2/tests/bug31098.phpt
ZendEngine2/tests/bug31436.phpt:
- Test renaming
* ZendEngine2/zend_vm_execute.h
ZendEngine2/tests/bug31436.phpt:
- Fix bug #31436 (isset() incorrectly returns true in dereference of a
wrong type)
* NEWS
NEWS:
- BFN
* ext/standard/html.c:
- Fix the fix :)
* (PHP_4_3)
ext/standard/html.c:
- MFH: fix htmlentities() / html_decode_entity() UTF-8 related bugs
initially reported by Kamesh Jayachandrana
* (PHP_5_0)
ext/standard/html.c
ext/standard/tests/strings/htmlentities17.phpt:
- MFH: fix htmlentities() / html_decode_entity() UTF-8 related bugs
initially reported by Kamesh Jayachandran
* ext/standard/html.c
ext/standard/tests/strings/htmlentities17.phpt:
- Fix htmlentities() / html_decode_entity() UTF-8 related bugs
initially reported by Kamesh Jayachandran
* ZendEngine2/zend_compile.c:
- Fix bug #31478 (segfault with empty())
2005-01-11 Joe Orton <[email protected]>
* (PHP_4_3)
NEWS
NEWS
sapi/apache2handler/php_functions.c
sapi/apache2handler/php_functions.c:
MFH: Fixed bug #30446 - virtual() includes files out of sequence,
work around 2.0 subrequest/internal redirect issue.
* sapi/apache2handler/php_functions.c:
Fixed bug #30446 - virtual() includes files out of sequence,
work around 2.0 subrequest/internal redirect issue.
2005-01-11 Jani Taskinen <[email protected]>
* sapi/cgi/cgi_main.c:
Fix ZTS build
2005-01-11 Rob Richards <[email protected]>
* (PHP_5_0)
ext/dom/php_dom.c:
MFH: revert fix for bug #28817 - fix is bad
* ext/dom/php_dom.c:
revert fix for bug #28817 - fix is bad
2005-01-11 Jani Taskinen <[email protected]>
* (PHP_4_3)
ext/imap/config.m4
ext/imap/config.m4
ext/imap/php_imap.c
ext/imap/php_imap.c:
MFH: - Added check for IMAP 2004 versions
* ext/imap/config.m4
ext/imap/php_imap.c:
- Added check for IMAP 2005 version
2005-01-10 Rasmus Lerdorf <[email protected]>
* ZendEngine2/zend.h
ZendEngine2/zend_API.c:
Fix OSX DL_UNLOAD macro and actually use it to make shared extensions
work on OSX.
2005-01-10 Antony Dovgal <[email protected]>
* ext/iconv/config.m4:
fix Konstantin's last name Chugeuv -> Chuguev
2005-01-10 Rasmus Lerdorf <[email protected]>
* (PHP_4_3)
Zend/zend.h
Zend/zend_API.c:
Fixed shared extensions on OSX. We were using zend_mh_bundle_load to
load a shared extension, but dlclose() to unload it because it was
hardcoded. This caused problems for extensions loaded from php.ini
since the Apple linker does a symbol check on an unload and we hadn't
properly unloaded the shared extensions when Apache unloaded the parent
PHP shared library during its 2-pass load/unload/load startup routine.
By fixing the DL_UNLOAD macro and un-hardcoding the dlclose() call this
now works.
2005-01-10 Jani Taskinen <[email protected]>
* (PHP_4_3)
ext/standard/tests/math/bug30069.phpt:
MFH: update test to include negative floats as strings too
* ext/standard/tests/math/bug30069.phpt:
update test to include negative floats as strings too
* (PHP_4_3)
NEWS
sapi/cgi/cgi_main.c:
MFH: - Fixed bug #28074 (FastCGI: stderr should be written in a FCGI stderr
stream).
* (PHP_5_0)
NEWS
sapi/cgi/cgi_main.c:
- Fixed bug #28074 (FastCGI: stderr should be written in a FCGI stderr
stream).
(chris at ex-parrot dot com)
* sapi/cgi/cgi_main.c:
- Fixed bug #28074 (FastCGI: stderr should be written in a FCGI stderr
stream).
* ext/standard/php_parsedate.h
ext/standard/php_smart_str.h
ext/standard/php_smart_str_public.h
ext/standard/url_scanner_ex.c
ext/standard/url_scanner_ex.h
ext/standard/url_scanner_ex.re:
Missing $Id$ tag
* ext/standard/credits_ext.h
ext/standard/credits_sapi.h:
- Update credits
* ChangeLog
ChangeLog.2004.gz:
- Compressed 2004 Changelog
* ZendEngine2/header
ZendEngine2/zend_arg_defs.c
ZendEngine2/zend_strtod.c
ZendEngine2/zend_vm_def.h
ZendEngine2/zend_vm_execute.h
ZendEngine2/zend_vm_gen.php
ZendEngine2/zend_vm_opcodes.h:
- Added missing header sections.
2005-01-10 Marcus Boerger <[email protected]>
* ext/sqlite/sqlite.c:
- Fix proto
* ext/sqlite/sqlite.c:
- Bugfix #31342: SQLite OO interface with Exceptions (hugo dot pl at gmail
dot com)
* ext/sqlite/php_sqlite.h
ext/sqlite/sqlite.c:
- Implement iterator interface in sqlite
2005-01-10 Jani Taskinen <[email protected]>
* ZendEngine2/acinclude.m4
ZendEngine2/configure.in:
- Added AC_ZEND_C_BIGENDIAN macro (as requested by Andi)
* configure.in
configure.in
configure.in:
- The pic/no-pic patch by Joe Orton.
2005-01-09 Jani Taskinen <[email protected]>
* (PHP_4_3)
configure.in:
Forgot this from the outside-source-dir patch
* (PHP_4_3)
Zend/zend.h:
This was not supposed to be committed..
* (PHP_5_0)
configure.in
TSRM/TSRM.h
TSRM/TSRM.h
TSRM/tsrm_config_common.h
TSRM/tsrm_config_common.h
Zend/zend.h
ZendEngine2/zend.h
ext/bcmath/libbcmath/src/config.h
ext/bcmath/libbcmath/src/config.h
ext/gd/gdcache.c
ext/gd/gdcache.c
ext/gd/gdttf.c
ext/gd/gdttf.c
ext/mcve/mcve.c
ext/mcve/mcve.c
ext/odbc/birdstep.c
ext/odbc/birdstep.c
ext/pcre/pcrelib/internal.h
ext/pcre/pcrelib/internal.h
ext/sqlite/config.m4
ext/standard/html.c
ext/standard/html.c
main/alloca.c
main/alloca.c
main/php_compat.h
main/php_compat.h
main/php_scandir.c
main/php_scandir.c
main/php_scandir.h
main/php_scandir.h
main/php_sprintf.c
main/php_syslog.h
main/php_syslog.h
sapi/cgi/libfcgi/include/fcgi_config.h
sapi/cgi/libfcgi/include/fcgi_config.h:
MFH: - Fix outside-source-tree builds. Always include generated header
files
with #include <some_header.h> to make sure the correct file is
used.
* configure.in
TSRM/TSRM.h
TSRM/tsrm_config_common.h
ZendEngine2/zend.h
ext/bcmath/libbcmath/src/config.h
ext/gd/gdcache.c
ext/gd/gdttf.c
ext/mcve/mcve.c
ext/odbc/birdstep.c
ext/pcre/pcrelib/internal.h
ext/sqlite/config.m4
ext/standard/html.c
main/alloca.c
main/php_compat.h
main/php_scandir.h
main/php_sprintf.c
main/php_syslog.h
sapi/cgi/libfcgi/include/fcgi_config.h:
- Fix outside-source-tree builds. Always include generated header files
with #include <some_header.h> to make sure the correct file is used.
2005-01-09 Antony Dovgal <[email protected]>
* (PHP_4_3)
NEWS:
BFN & end of cvs spam
* (PHP_5_0)
NEWS:
BFN
* ext/session/tests/bug31454.phpt
ext/session/tests/bug31454.phpt
ext/session/tests/bug31454.phpt:
add skipif section
* ext/session/tests/bug31454.phpt:
1.1.4;
add test for bug #31454
* ext/session/session.c:
efree(name)
* ext/session/session.c:
fix bug #31454 (session_set_save_handler crashes PHP when supplied
non-existent object ref)
2005-01-09 Jani Taskinen <[email protected]>
* (PHP_4_3)
Zend/zend_ini.c
Zend/zend_ini.h:
MFH: - Fix leak. (forgot from previous commit)
* (PHP_4_3)
ext/standard/basic_functions.c
ext/standard/basic_functions.c
main/main.c
main/main.c
main/php_main.h
main/php_main.h:
MFH: - Fix leaks with registered shutdown functions.
* ext/standard/basic_functions.c
main/main.c
main/php_main.h:
- Fix leaks with registered shutdown functions.
* ZendEngine2/zend.c:
MFB: - Rationalize code a bit
* (PHP_4_3)
Zend/zend.h:
MFZE2: Some cleanups
* TODO
TODO:
Remove done stuff
2005-01-08 Jani Taskinen <[email protected]>
* (PHP_4_3)
ext/standard/basic_functions.c
ext/standard/basic_functions.c:
MFH: - Fix possible crash (PR#26223). Leaks remain.
* ext/standard/basic_functions.c:
- Fix possible crash (PR#26223). Leaks remain.
2005-01-08 Georg Richter <[email protected]>
* ext/mysqli/mysqli_embedded.c
ext/mysqli/tests/connect.inc:
fixed compile bug under Windows (libmysql.def currently doesn't export
mysql_server_init/end).
Thanks to Sebastian Bergmann for reporting
2005-01-08 Dmitry Stogov <[email protected]>
* TSRM/tsrm_virtual_cwd.c:
Unnecesary check was removed
2005-01-08 Marcus Boerger <[email protected]>
* ext/standard/tests/serialize/bug31442.phpt:
- Add new test
* ext/standard/tests/serialize/bug30234.phpt:
- Unify
* ext/mysqli/mysqli_exception.c:
- Fix shared build
* ext/mysqli/mysqli.c:
- Remove double destroy (which is definitively wrong and prevents php from
normal execution).
* ext/dom/document.c:
- Fix dependency
2005-01-08 Jani Taskinen <[email protected]>
* NEWS:
NN
* ext/snmp/php_snmp.h
ext/snmp/snmp.c:
- Fix some memory leaks
2005-01-07 Antony Dovgal <[email protected]>
* ext/standard/head.c:
remove duplicated include
2005-01-07 Magnus Määttä <[email protected]>
* ext/posix/posix.c:
Argh.. Committed old patch.
Add safe_mode check and fix error code.
2005-01-07 Antony Dovgal <[email protected]>
* acinclude.m4:
fix PHP_CHECK_64BIT macro (finally got 64bit machine to test it)
2005-01-07 Georg Richter <[email protected]>
* ext/mysqli/mysqli.c:
forgot to remove some comments in last commit:(
2005-01-07 Sebastian Bergmann <[email protected]>
* ext/mysqli/mysqli_exception.c:
ZTS fix.
* ext/mysqli/config.w32:
Sync with config.m4.
2005-01-07 Magnus Määttä <[email protected]>
* NEWS
ext/posix/php_posix.h
ext/posix/posix.c:
Added new function: posix_access()
Feature requests: #29615, #14924
2005-01-07 Georg Richter <[email protected]>
* NEWS:
new mysqli stuff
* ext/mysqli/config.m4
ext/mysqli/mysqli.c
ext/mysqli/mysqli_api.c
ext/mysqli/mysqli_driver.c
ext/mysqli/mysqli_embedded.c
ext/mysqli/mysqli_exception.c
ext/mysqli/mysqli_fe.c
ext/mysqli/mysqli_nonapi.c
ext/mysqli/mysqli_prop.c
ext/mysqli/mysqli_report.c
ext/mysqli/mysqli_warning.c
ext/mysqli/php_mysqli.h
ext/mysqli/tests/001.phpt
ext/mysqli/tests/014.phpt
ext/mysqli/tests/017.phpt
ext/mysqli/tests/033.phpt
ext/mysqli/tests/034.phpt
ext/mysqli/tests/041.phpt
ext/mysqli/tests/045.phpt
ext/mysqli/tests/047.phpt
ext/mysqli/tests/049.phpt
ext/mysqli/tests/061.phpt
ext/mysqli/tests/connect.inc
ext/mysqli/tests/skipif.inc
ext/mysqli/tests/skipifemb.inc:
Added new classes:
mysqli_driver
mysqli_warning
mysqli_exception
mysqli_sql_exception
Improved embedded server support
changed testsuite to work also with embedded server
Made statement and resultset classes extendable
minor fixes
2005-01-07 Anantha Kesari H Y <[email protected]>
* (PHP_5_0)
tests/classes/array_access_001.phpt
tests/classes/array_access_002.phpt
tests/classes/array_access_003.phpt
tests/classes/array_access_004.phpt:
removed skipif sections that check for the existence of ArrayAccess class
which is nomore a class but a interface.As the corresponding files in
PHP-5.1-HEAD had removed the SKIPIF blocks themselves, removing the same
for PHP5_0 branch also.
2005-01-07 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS
NEWS:
BFN
* (PHP_4_3)
sapi/apache2filter/sapi_apache2.c
sapi/apache2filter/sapi_apache2.c:
MFH: - Fixed bug #31055 (apache2filter: per request leak proportional to
the full path of the request URI)
* sapi/apache2filter/sapi_apache2.c:
- Fixed bug #31055 (apache2filter: per request leak proportional to the
full path of the request URI)
* (PHP_4_3)
acinclude.m4
acinclude.m4
configure.in
configure.in
scripts/phpize.m4
scripts/phpize.m4:
MFH: - Make sure $host_alias is never empty