forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
4303 lines (3142 loc) · 112 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-03-13 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
configure.in
main/php_version.h:
Back to dev.
* (PHP_4_3)
NEWS
configure.in
main/php_version.h:
4.3.11RC1
2005-03-13 Zeev Suraski <[email protected]>
* (PHP_5_0)
configure.in
main/php_version.h:
Prepare to roll 5.0.4RC1
2005-03-13 Stanislav Malyshev <[email protected]>
* ZendEngine2/zend_stream.c
ZendEngine2/zend_stream.c:
Do not convert ZEND_HANDLE_FP to ZEND_HANDLE_STREAM but allow using
reader/closer
on it
2005-03-13 Ilia Alshanetsky <[email protected]>
* ext/standard/streamsfuncs.c:
Fixed compiler warning.
2005-03-13 Marcus Boerger <[email protected]>
* ZendEngine2/zend_interfaces.c:
- More exact signatures (even though complete correct not possible atm)
2005-03-13 Stanislav Malyshev <[email protected]>
* ZendEngine2/zend_builtin_functions.c
ZendEngine2/zend_builtin_functions.c:
Fix get_extension_funcs() - extension names are now lowercased, so should
be function arguments.
2005-03-13 Andrey Hristov <[email protected]>
* NEWS:
credits to Ilia
2005-03-13 Marcus Boerger <[email protected]>
* (PHP_5_0)
NEWS:
- BFN
* ZendEngine2/zend_execute_API.c:
- Actually this is a much better error decription
* ZendEngine2/zend_execute_API.c
ZendEngine2/tests/bug32290.phpt
ZendEngine2/tests/bug32290.phpt:
- Bugfix #32290
2005-03-12 Marcus Boerger <[email protected]>
* ZendEngine2/zend_vm_def.h
ZendEngine2/zend_vm_execute.h:
- If an exception is pending we don't bail out but show the unhandled
exception
2005-03-12 Ilia Alshanetsky <[email protected]>
* ext/standard/string.c
ext/standard/tests/strings/str_word_count.phpt:
A more performance friendly version of Andrey's patch.
2005-03-12 Andrey Hristov <[email protected]>
* NEWS:
FRN
* ext/standard/string.c
ext/standard/tests/strings/str_word_count.phpt:
added an optional third parameter to str_word_count(), which is used as
a list of characters which are considerd "is_alpha()". Thus V14GR4 can
be extracted as one word if the user supplies "14" as charlist.
FR #31560
2005-03-12 Wez Furlong <[email protected]>
* sapi/cli/php_cli.c:
it's 2005 already
2005-03-12 Andrey Hristov <[email protected]>
* ext/standard/string.c:
- type is either 1 or 2 if second parameter is set. if not set then type
is 0.
- use the lvalue for the second rvalue
* ext/standard/tests/strings/str_word_count.phpt:
add a test file
* ext/pcre/tests/pcre_count.phpt:
add test
* NEWS
ext/pcre/php_pcre.c
ext/pcre/php_pcre.h
main/SAPI.c
win32/sendmail.c:
FR 32275 - fifth parameter to preg_replace() to count number of replaces
made.
* (PHP_5_0)
NEWS:
BFN
* ext/standard/array.c
ext/standard/array.c:
Fixed #30871
2005-03-12 Marcus Boerger <[email protected]>
* ext/wddx/tests/wddx.xml:
- Fix test
* ext/wddx/wddx.c:
- Fix another memleak
* ext/wddx/wddx.c:
- Fix memleak
2005-03-12 Wez Furlong <[email protected]>
* ext/sqlite/config.w32:
build sqlite2 pdo driver on win32
2005-03-12 Marcus Boerger <[email protected]>
* ext/sqlite/pdo_sqlite2.c:
- Errcode might be empty
2005-03-12 Wez Furlong <[email protected]>
* ext/sqlite/pdo_sqlite2.c:
Fix crappy whitespace
2005-03-11 Wez Furlong <[email protected]>
* ext/sqlite/config.m4
ext/sqlite/config.w32
ext/sqlite/pdo_sqlite2.c
ext/sqlite/sqlite.c:
Implement a PDO driver for sqlite 2
2005-03-11 Anantha Kesari H Y <[email protected]>
* (PHP_5_0)
main/streams/userspace.c:
removing redundant CLIB_STAT_PATCH
* (PHP_5_0)
ext/standard/filestat.c:
removing redundant NEW_LIBC checks
In NetWare statfs f_bavail member is known as f_bfree
NetWare LibC has pwd.h
* (PHP_5_0)
ext/standard/file.c:
NetWare LibC has pwd.h and removing redundant CLIB_STAT_PATCH
* (PHP_5_0)
TSRM/TSRM.c:
NetWare has a proper pthreads support
* (PHP_5_0)
TSRM/TSRM.h:
NetWare can make use autoconf generated tsrm_config.h
* (PHP_5_0)
TSRM/tsrm_virtual_cwd.c
TSRM/tsrm_virtual_cwd.h:
NetWare LibC has lstat
* (PHP_5_0)
TSRM/tsrm_config_common.h:
Netware can make use of autoconf generated tsrm_config.h
* (PHP_5_0)
sapi/cli/php_getopt.h:
As NetWare LibC has optind and optarg macros defined in unistd.h our local
variables were getting mistakenly preprocessed so undeffing optind and
optarg
* (PHP_5_0)
configure.in:
NetWare don't have sendmail binary so need this sendmail.c smarthost
implementation
* (PHP_5_0)
netware/sendmail_nw.h:
changing the windows style directory seperator in netinet\in.h to
netinet/in.h
* (PHP_5_0)
win32/sendmail.c:
time.h is available in NetWare LibC.
path sperator has been changed from \ to / while including
netware\sendmail_nw.h
* (PHP_5_0)
ext/standard/datetime.c:
removed redundant NEW_LIBC checks for NetWare
* (PHP_5_0)
ext/standard/proc_open.c:
In NetWare LibC WTERMSIG is avaliable as WIFTERMSIG
* (PHP_5_0)
ext/standard/link.c
main/fopen_wrappers.c:
NetWare LibC has pwd.h
* (PHP_5_0)
main/php_open_temporary_file.c:
Netware LibC has mkstemp
* (PHP_5_0)
main/network.c:
removed NetWare specific NEW_LIBC checks
* (PHP_5_0)
main/php_scandir.c:
NetWare LibC does not have search.h
* (PHP_5_0)
ZendEngine2/acconfig.h:
NetWare LibC's sys/types.h does not include sys/select.h implicitly as it
is the case with Linux LibC
2005-03-11 Marcus Boerger <[email protected]>
* ZendEngine2/tests/bug32252.phpt:
- Add new test
* ZendEngine2/tests/bug27145.phpt
ZendEngine2/tests/bug27145.phpt:
- Irrelevant
* (PHP_5_0)
NEWS
ext/xml/xml.c:
- Bugfix #30266
* ext/xml/xml.c:
- Fix #30266
* ZendEngine2/zend_object_handlers.c:
- Don't touch refcount/is_ref
* ext/standard/tests/serialize/bug31402.phpt:
- Times have changed - php 5 relevant version now
* ext/standard/array.c
ext/standard/streamsfuncs.c
ext/standard/type.c:
- Do not touch return_valu's refcount or is_ref
* ext/standard/tests/serialize/bug31402.phpt:
- Allow to work under php 5
2005-03-10 Marcus Boerger <[email protected]>
* ext/standard/string.c:
- Cosmetics
* ext/standard/string.c:
- Do not touch return_valu's refcount or is_ref
2005-03-10 Ilia Alshanetsky <[email protected]>
* ext/ftp/ftp.c
ext/ftp/php_ftp.c:
Final set of fixes for bug #27633.
2005-03-10 Rob Richards <[email protected]>
* acinclude.m4:
require libxml 2.6.0 or higher
2005-03-10 Zeev Suraski <[email protected]>
* ext/standard/basic_functions.c:
Oops, revert.
* ext/standard/basic_functions.c:
Fix prototype
2005-03-10 Marcus Boerger <[email protected]>
* run-tests2.php
server-tests.php
server-tests.php
server-tests.php:
- Rename test script
* run-tests2.php:
- Make this work under 5
2005-03-10 Anantha Kesari H Y <[email protected]>
* (PHP_5_0)
main/php_compat.h:
NetWare can use of ./configure generated php_config.h
* (PHP_5_0)
ext/standard/ftp_fopen_wrapper.c:
NetWare Specific stat member changes
2005-03-10 Marcus Boerger <[email protected]>
* ZendEngine2/tests/bug28442.phpt
ZendEngine2/tests/bug28442.phpt:
- Bugfix #28442
* ZendEngine2/zend_compile.c:
- Bugfix #28442
2005-03-10 Anantha Kesari H Y <[email protected]>
* (PHP_5_0)
ext/standard/pageinfo.c:
NetWare LibC has pwd.h and removing the redundant NEW_LIBC checks
* (PHP_5_0)
ext/standard/pack.c
ext/standard/rand.c:
NetWare LibC has pwd.h
* (PHP_5_0)
ext/standard/basic_functions.c:
NetWare LibC has netdb.h
* (PHP_5_0)
ext/session/mod_files.c:
NetWare stat structure difference has been handled
2005-03-10 Joe Orton <[email protected]>
* (PHP_4_3)
sapi/apache2handler/sapi_apache2.c
sapi/apache2handler/sapi_apache2.c:
MFH: - Fixed bug #31717: Reject PATH_INFO if "AcceptPathInfo off" is used.
2005-03-10 Anantha Kesari H Y <[email protected]>
* (PHP_5_0)
ZendEngine2/acconfig.h:
Autoconf based build can be used for NetWare
* (PHP_5_0)
main/php.h:
NetWare LibC has param.h and pwd.h
* (PHP_5_0)
ZendEngine2/zend.h:
NetWare can make use of ./configure generated zend_config.h
2005-03-10 Joe Orton <[email protected]>
* ext/standard/html.c:
Fix /*-within-comment warning from GCC.
* sapi/apache2handler/sapi_apache2.c:
- Fixed bug #31717: Reject PATH_INFO if "AcceptPathInfo off" is used.
2005-03-10 Anantha Kesari H Y <[email protected]>
* (PHP_5_0)
TSRM/threads.m4:
This fix is needed for cross compilation to go through
* (PHP_5_0)
ZendEngine2/Zend.m4:
This patch is needed for cross compilation to go through
2005-03-10 Marcus Boerger <[email protected]>
* ZendEngine2/zend_vm_execute.h:
- #31562 2nd part
* ZendEngine2/zend_vm_def.h:
- Fix #31562
* (PHP_4_3)
NEWS
NEWS
NEWS
NEWS:
- BFN
* ext/standard/var_unserializer.c:
- Wrong order of action - touch
* ext/standard/var_unserializer.re:
- Fix #31442 unserialize broken on 64-bit systems
- Fix one warning
2005-03-09 Marcus Boerger <[email protected]>
* ext/standard/var_unserializer.c:
- Fix #31442 unserialize broken on 64-bit systems
- Fix one warning
2005-03-09 Ilia Alshanetsky <[email protected]>
* ext/ftp/ftp.c:
Fixes to ascii downloads on win32.
2005-03-09 Rui Hirokawa <[email protected]>
* (PHP_4_3)
Zend/zend_language_scanner.l:
fixed #31987: possible zend-multibyte crash in ZTS.
2005-03-09 Derick Rethans <[email protected]>
* (PHP_5_0)
NEWS
ext/standard/html.c
ext/standard/html.c:
- MF43: Fixed bug #28067 (partially incorrect utf8 to htmlentities
mapping).
* (PHP_4_3)
NEWS
ext/standard/html.c:
- Fixed bug #28067 (partially incorrect utf8 to htmlentities mapping).
(Derick,
Benjamin Greiner)
2005-03-09 Magnus Määttä <[email protected]>
* run-tests.php:
Since in_array is case sensitive we need to convert the names to lowercase
otherwise it won't run tests for extensions where the case of the name
differ from the
extension name.
2005-03-08 Jani Taskinen <[email protected]>
* main/main.c
main/php.h:
This makes more sense. (Someone might actually use php_error_docref0() :)
2005-03-08 Johannes Schlüter <[email protected]>
* (PHP_5_0)
NEWS:
- BFN
2005-03-08 Jani Taskinen <[email protected]>
* main/php.h:
- This was not needed (said Marcus)
2005-03-08 Ilia Alshanetsky <[email protected]>
* ext/standard/html.c:
Improve the performance of htmlspecialchars_decode() by 20-30%.
2005-03-08 Jani Taskinen <[email protected]>
* ext/standard/var_unserializer.c:
update
* NEWS:
reorder
2005-03-07 Marcus Boerger <[email protected]>
* NEWS:
- Add some more news
* tests/classes/serialize_001.phpt:
- Add test
* ext/standard/var_unserializer.re:
- Update signature
* ZendEngine2/zend.h
ZendEngine2/zend_compile.c
ZendEngine2/zend_interfaces.c
ZendEngine2/zend_interfaces.h:
- New Interface Serializeable
- Change signature of unserialize() callback to ease inheritance and
support code reuse of handlers
* ext/standard/file.c:
- Fix proto
- Do not try to write zero bytes
* ext/standard/file.c:
- Length needs to be positive
* ext/standard/file.c:
- Make maic qutes runtime work if length is specified too
* ext/standard/file.c:
- Delay memory allocation, speeds up faiure case
2005-03-07 Ilia Alshanetsky <[email protected]>
* NEWS
ext/standard/basic_functions.c
ext/standard/html.c
ext/standard/html.h:
Added htmlspecialchars_decode() function for fast conversion from
htmlspecialchars() generated entities back to characters.
2005-03-07 Marcus Boerger <[email protected]>
* ZendEngine2/tests/bug32226.phpt
ZendEngine2/tests/bug32226.phpt:
- Add updated description
* ZendEngine2/zend_builtin_functions.c
ZendEngine2/tests/bug32226.phpt:
- Fix #32226
2005-03-07 Jani Taskinen <[email protected]>
* (PHP_4_3)
NEWS
NEWS:
RBFN
2005-03-07 Zeev Suraski <[email protected]>
* (PHP_4_3)
tests/basic/bug31672.phpt:
Remove test case for a Won't Fix bug
* (PHP_4_3)
Zend/zend_language_scanner.l
ZendEngine2/zend_language_scanner.l
ZendEngine2/zend_language_scanner.l:
Revert // </script> patch
2005-03-07 Ilia Alshanetsky <[email protected]>
* (PHP_5_0)
NEWS
ext/standard/proc_open.c
ext/standard/proc_open.c:
Fixed bug #32210 (proc_get_status() sets "running" always to true).
2005-03-07 Marcus Boerger <[email protected]>
* tests/classes/__set__get_005.phpt:
- Add new test
* (PHP_5_0)
ext/standard/file.c:
- MFH Allow length 0 as default (e.g. skip param)
* ext/standard/file.c:
- Allow length 0 as default (e.g. skip param)
2005-03-06 Jani Taskinen <[email protected]>
* sapi/cgi/config9.m4
sapi/cgi/config9.m4:
MFB: Fix VPATH build
2005-03-06 Marcus Boerger <[email protected]>
* ext/standard/image.c:
- Actuall the comments were correct
* ZendEngine2/zend_reflection_api.c:
- Fix by Tim
* ext/mysqli/mysqli.c:
- Bugfix #28840 __destruct of a class that extends mysqli not called
2005-03-06 Ilia Alshanetsky <[email protected]>
* (PHP_5_0)
ext/standard/html.c:
MFH: Make html_entity_decode() 15-20% faster by avoiding pointless string
duplication.
* ext/standard/html.c:
Make html_entity_decode() 15-20% faster by avoiding pointless string
duplication.
2005-03-06 Jani Taskinen <[email protected]>
* NEWS
ext/fam/.cvsignore
ext/fam/CREDITS
ext/fam/config.m4
ext/fam/fam.c
ext/fam/package.xml
ext/fam/php_fam.h
ext/mnogosearch/.cvsignore
ext/mnogosearch/CREDITS
ext/mnogosearch/README
ext/mnogosearch/config.m4
ext/mnogosearch/index.php
ext/mnogosearch/php_mnogo.c
ext/mnogosearch/php_mnogo.h:
- Moved ext/fam and ext/mnogosearch to PECL
2005-03-06 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
NEWS
NEWS
ext/standard/image.c
ext/standard/image.c:
MFH: Fixed bug #29424 (width and height inverted for JPEG2000 files).
* ext/standard/image.c:
Fixed bug #29424 (width and height inverted for JPEG2000 files).
2005-03-06 Jani Taskinen <[email protected]>
* ZendEngine2/zend_compile.c
ZendEngine2/zend_compile.c:
Fixed compile warning (bug #32046)
* ZendEngine2/zend_mm.c:
Fix compile warning (bug #32047)
2005-03-05 Rasmus Lerdorf <[email protected]>
* (PHP_4_3)
ext/exif/exif.c:
wtf?
2005-03-05 John Coggeshall <[email protected]>
* ext/skeleton/tests/001.phpt:
Opps.
2005-03-05 Derick Rethans <[email protected]>
* (PHP_5_0)
NEWS:
- Make sure to note that this involves SOAP.
2005-03-05 Moriyoshi Koizumi <[email protected]>
* NEWS
main/SAPI.c
main/php_content_types.c
main/php_content_types.h:
- Fixed bug #32109 ($_POST is not populated in multithreaded environment).
2005-03-05 Dmitry Stogov <[email protected]>
* (PHP_5_0)
NEWS:
Fixed bug #32115 (dateTime encoding of timezone incorrect)
2005-03-05 John Coggeshall <[email protected]>
* ext/skeleton/tests/001.phpt:
Starting tests....
2005-03-05 Andrei Zmievski <[email protected]>
* ext/standard/array.c:
Check that object can actually return a class entry. I need this for a
class-entry-less helper objects that should not be present in the class
table.
2005-03-04 Jani Taskinen <[email protected]>
* sapi/apache_hooks/config.m4:
Merge from sapi/apache/config.m4 and cleanup
* sapi/apache/config.m4:
Do not set apache stuff if not building apache
* acinclude.m4:
This did not work for some reason, better revert it
* scripts/phpize.m4:
Add missing subst
2005-03-04 Ilia Alshanetsky <[email protected]>
* (PHP_5_0)
ext/mbstring/mb_gpc.c:
Removed unused variables.
2005-03-03 Marcus Boerger <[email protected]>
* (PHP_5_0)
NEWS:
- BFN
2005-03-03 Johannes Schlüter <[email protected]>
* (PHP_4_3)
ext/standard/incomplete_class.c:
- Remove <b>-Tag from error message
2005-03-03 Zeev Suraski <[email protected]>
* main/logos.h:
New egg
2005-03-03 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
NEWS
NEWS
ext/standard/file.c
ext/standard/file.c:
MFH: Fixed bug #32160 (file truncation in copy() when source & destination
are
the same).
* ext/standard/file.c:
Fixed bug #32160 (file truncation in copy() when source & destination are
the same).
2005-03-02 Jani Taskinen <[email protected]>
* (PHP_4_3)
sapi/cli/php.1.in:
typofix
2005-03-02 Moriyoshi Koizumi <[email protected]>
* ext/xml/tests/bug32001.phpt
ext/xml/tests/bug32001.phpt:
- Add testcases for bug #32001
2005-03-02 Rob Richards <[email protected]>
* NEWS
NEWS:
BFN
* ext/xsl/php_xsl.c
ext/xsl/php_xsl.h
ext/xsl/xsltprocessor.c:
Fixed bug #31033 (php:function(string, nodeset) with xsl:key crashes PHP)
- only in 5.1 branch for now due to significance of change
2005-03-02 Stefan Esser <[email protected]>
* ext/exif/exif.c:
Fixed possible bufferoverflow
2005-03-02 Rob Richards <[email protected]>
* (PHP_5_0)
ext/xml/compat.c:
MFH: Fixed bug #32001 (xml_parse_into_struct() exceeds maximum execution
time)
* ext/xml/compat.c:
Fixed bug #32001 (xml_parse_into_struct() exceeds maximum execution time)
2005-03-01 Marcus Boerger <[email protected]>
* ZendEngine2/zend_interfaces.c:
- Support statuc methods/functions
2005-03-01 Jani Taskinen <[email protected]>
* (PHP_4_3)
ext/standard/var_unserializer.c:
touch
2005-03-01 Ilia Alshanetsky <[email protected]>
* (PHP_4_3)
NEWS
NEWS
ext/standard/microtime.c
ext/standard/microtime.c:
MFH: Fixed bug #31792 (getrusage() does not provide ru_nswap value).
* ext/standard/microtime.c:
Fixed bug #31792 (getrusage() does not provide ru_nswap value).
2005-03-01 Andrei Zmievski <[email protected]>
* pear/Console/Getopt.php
pear/Console/Getopt.php
pear/Console/Getopt.php:
Allow = sign in long option argument.
Fixes PEAR bug #1831.
2005-03-01 Anantha Kesari H Y <[email protected]>
* ext/standard/string.c
ext/standard/string.c:
NetWare allows directory seperator as \ and /
2005-03-01 Stefan Esser <[email protected]>
* ext/standard/image.c:
Handle last or broken JP2 boxes correctly.
2005-03-01 Antony Dovgal <[email protected]>
* (PHP_4_3)
NEWS
ext/gmp/gmp.c:
MFH: checks for negative values to gmp_sqrt(), gmp_powm(), gmp_sqrtrem()
and gmp_fact() to prevent SIGFPE
changed zend_error() to php_error_docref()
* (PHP_5_0)
NEWS
ext/gmp/gmp.c:
MFH: checks for negative values to gmp_sqrt(), gmp_powm(), gmp_sqrtrem()
and gmp_fact() to prevent SIGFPE
* ext/gmp/gmp.c:
fix SIGFPE in gmp_powm(), gmp_sqrt() & gmp_sqrtrem() when using negative
values
do not allow negative value to be passed to gmp_fact()
2005-03-01 Marcus Boerger <[email protected]>
* ext/standard/image.c:
- MFB
* (PHP_5_0)
ext/standard/image.c:
- Fix warning
* (PHP_5_0)
NEWS:
- BFN
2005-03-01 Jani Taskinen <[email protected]>
* ext/standard/var_unserializer.c
ext/standard/var_unserializer.c:
update
* scripts/Makefile.frag:
ws
* (PHP_4_3)
NEWS
Zend/zend_language_scanner.l
tests/basic/bug31672.phpt:
MFH: - Fixed bug #31672 (</script> not considered closing tag if
MFH: preceded by one-line comment
* tests/basic/bug31672.phpt
tests/basic/bug31672.phpt
tests/basic/bug31672.phpt:
1.1.4;
file bug31672.phpt was initially added on branch PHP_5_0.
* (PHP_5_0)
NEWS
ZendEngine2/zend_language_scanner.l:
MFH: - Fixed bug #31672 (</script> not considered closing tag if
MFH: preceded by one-line comment)
* ZendEngine2/zend_language_scanner.l:
Fix the fix for one line comments with <script..> </script> tags
2005-03-01 Johannes Schlüter <[email protected]>
* php.ini-dist
php.ini-recommended:
- Change comment: Syntax highlighter uses <span> instead of <font>
2005-02-28 Ilia Alshanetsky <[email protected]>
* php.ini-dist
php.ini-recommended:
Added notes about ignore_user_abort to php.ini*
2005-02-28 Marcus Boerger <[email protected]>
* ZendEngine2/zend_builtin_functions.c:
- Add support for methods dynamically added through object handlers
2005-02-28 Jani Taskinen <[email protected]>
* NEWS:
reorder
* (PHP_5_0)
NEWS:
typo
2005-02-28 Stefan Esser <[email protected]>
* ext/standard/var_unserializer.re:
This way around for correct error messages
* ext/standard/var_unserializer.re:
Drop invalid arrays
2005-02-28 Wez Furlong <[email protected]>
* scripts/Makefile.frag:
Let's install the mbstring headers.
Fixes PECL #3516
2005-02-28 Marcus Boerger <[email protected]>
* acinclude.m4:
- Fix typo
2005-02-27 Marcus Boerger <[email protected]>
* ext/simplexml/tests/016a.phpt
ext/simplexml/tests/022.phpt:
- Add tests
* ZendEngine2/zend_object_handlers.c:
- If silence if wanted we do not error out
* ZendEngine2/zend_reflection_api.c:
- Add two new methods
- Fix signature, no need to cast it
* ZendEngine2/zend_API.h:
- These must be initailized
2005-02-27 Rasmus Lerdorf <[email protected]>
* TSRM/tsrm_virtual_cwd.c:
Add a comment to remind me to have a look at this at some point.
2005-02-27 Ilia Alshanetsky <[email protected]>
* ext/standard/ftp_fopen_wrapper.c
ext/standard/image.c:
Fixed compiler warnings.
2005-02-27 Marcus Boerger <[email protected]>
* ZendEngine2/zend_builtin_functions.c:
- Update method_exists to new handlers and allow first parameter as string
2005-02-27 Jani Taskinen <[email protected]>
* main/main.c:
cs fix (really annoying :)
* acinclude.m4
ZendEngine2/Zend.m4:
- Cache the version check results
2005-02-27 Stanislav Malyshev <[email protected]>
* ext/standard/var_unserializer.c
ext/standard/var_unserializer.re:
fix typo
2005-02-27 Sara Golemon <[email protected]>
* ext/standard/info.c:
Enum filters in phpinfo()
2005-02-26 Wez Furlong <[email protected]>
* run-tests.php:
let the test-suite run from an alternate build dir
2005-02-26 Marcus Boerger <[email protected]>
* ext/dba/config.m4:
- Make detection work for macros
* ext/dba/dba_db1.c:
- Simplify
2005-02-26 Greg Beaver <[email protected]>
* pear/go-pear-list.php:
use 1.3.5
2005-02-26 Marcus Boerger <[email protected]>
* ext/dba/config.w32: