forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
24248 lines (16803 loc) · 700 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
2001-11-21 Frank M. Kromann <[email protected]>
* win32/winutil.c
win32/winutil.h: Allow php_win_err() to be called from extenstions
2001-11-21 Stig Venaas <[email protected]>
* ext/ldap/ldap.c
ext/ldap/php_ldap.h: Added ldap_sort() function
2001-11-21 Uwe Steinmann <[email protected]>
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h:
- add functions clone_node(), is_blank_node(), create_entity_reference()
- fixed bug in node_name()
- fixed behavior of append_child(), it now adds a child a not a sibling
2001-11-21 Sean Bright <[email protected]>
* NEWS: Fix typo.
2001-11-21 Harald Radi <[email protected]>
* NEWS: added blabla
2001-11-20 Adam Daniel <[email protected]>
* pear/HTML/Table.php:
fixed small bug in altRowAttributes which made second attribute be applied before the first
* pear/HTML/Table.php:
Added setAllAttributes and updateAllAttributes also changed all html tags to lowercase
2001-11-20 Sebastian Bergmann <[email protected]>
* win32/php_modules.dsw:
MFH (Remove sablot from php_modules.dsw, its no longer in repository)
2001-11-20 Sascha Schumann <[email protected]>
* ext/ircg/ircg.c:
ircg_now_time_t might be zero before the ircg writer/buffer thread is started.
2001-11-20 Sterling Hughes <[email protected]>
* ext/curl/curl.c
ext/curl/php_curl.h:
Temporary fix not for the HEAD branch, this is the only way to avoid the
segfault and *really* not fuck up the release cycle
* ext/curl/curl.c: MFH latest cURL fixes, these are tested and important
* ext/curl/curl.c:
Fix a crash bug in CURLOPT_POSTFIELDS by using curl_formadd instead of
curl_formparse
Fix a crash bug when CURLOPT_INFILE is not properly specified.
2001-11-20 James Moore <[email protected]>
* win32/php_modules.dsw:
Remove sablot from php_modules.dsw, its no longer in repository
2001-11-19 Zeev Suraski <[email protected]>
* main/php_version.h
configure.in: Go with final RC
2001-11-19 Andrei Zmievski <[email protected]>
* NEWS: Fix NEWS.
2001-11-19 Derick Rethans <[email protected]>
* NEWS: - Added a bugfix
* NEWS: - Add bugfix
2001-11-19 Zeev Suraski <[email protected]>
* main/main.c: MFH
* main/main.c:
Fix set_time_limit() to affect only the current request (fix bug #13711)
2001-11-19 Jani Taskinen <[email protected]>
* sapi/apache/config.m4: MFH
* sapi/apache/config.m4:
Fixed bugs: #14034, #11647 (can not find any others)
2001-11-18 Jani Taskinen <[email protected]>
* config.guess
config.sub: MFH
* config.guess
config.sub: Fixed bug: #14014.
* ext/ncurses/config.m4: Test before commit..test before commit..
* ext/ncurses/config.m4: Now this might even work.
2001-11-18 Doug MacEachern <[email protected]>
* ext/session/php_session.h:
AIX compiler doesn't like having a comma at the end of the enum
(Ryan Bloom <[email protected]>)
2001-11-18 Derick Rethans <[email protected]>
* ext/standard/basic_functions.c
ext/standard/md5.c
ext/standard/md5.h:
- Added md5_file(), which calculaties the MD5 sum of a file.
(patch by: Alessandro Astarita <[email protected]>) (Derick)
- Added md5_file(), which calculaties the MD5 sum of a file.
(patch by: Alessandro Astarita <[email protected]>)
* NEWS: - MFB
* NEWS: - Fix typo
* NEWS: - Updated NEWS to reflect removal of ext/sablotron
* ext/ncurses/config.m4: - MFH (fix build under FreeBSD)
* ext/ncurses/config.m4: - Fix build on FreeBSD (patch by Markus Fischer)
2001-11-18 Jani Taskinen <[email protected]>
* ext/standard/file.c: WS fix
* NEWS: Some typos..
2001-11-18 Andrei Zmievski <[email protected]>
* NEWS
ext/wddx/wddx.c: MFH
* ext/wddx/wddx.c
NEWS:
- Added support for parsing recordsets.
- Fixed a bug that sometimes would corrupt top-level element
if it was a scalar one.
2001-11-18 Derick Rethans <[email protected]>
* acinclude.m4
configure.in: - MFH
2001-11-17 Stig Bakken <[email protected]>
* pear/DB/IDEAS: ideas scratch file
2001-11-16 David Reid <[email protected]>
* configure.in: s/\t/ /
2001-11-16 Sascha Schumann <[email protected]>
* ext/standard/var_unserializer.c
ext/standard/var_unserializer.re:
Fix two incidents which have been reported about the new unserializer.
might lead to crash
PR: #14082
2001-11-16 Andrei Zmievski <[email protected]>
* ext/overload/overload.c: Add todo item.
2001-11-16 Rasmus Lerdorf <[email protected]>
* ext/gd/gd.c: MFH
(I wish people would stop committing whitespace fixes to code that has
been around forever. It really makes merging and checking diffs a pain
in the ass as real changes end up hidden within a sea of useless
whitespace fixes)
* ext/gd/gd.c: Use the macro here and add an E_NOTICE
2001-11-16 Jani Taskinen <[email protected]>
* main/rfc1867.c: - Nuked some memleaks
- Changed the error to be set always. Otherwise the index for error
wouldn't be correct in case of uploading multiple files within array.
( <input type="file" name="test[]"> )
* main/rfc1867.c: No use of populating the hash if there is no file saved.
2001-11-15 Jan Lehnardt <[email protected]>
* pear/HTML/IT.php: whitespace fix.
2001-11-15 Adam Daniel <[email protected]>
* pear/HTML/Common.php: fixed bug in getAttribute and added getAttributes
2001-11-15 Jani Taskinen <[email protected]>
* main/rfc1867.c:
In case of submitting form without any files selected don't set
the tmp_name.
2001-11-15 Stanislav Malyshev <[email protected]>
* ext/standard/Makefile.in
ext/standard/basic_functions.c
ext/standard/ftok.c
ext/standard/php_ftok.h
ext/standard/php_standard.h:
Check in ftok() function by Andrew Sitnikov <[email protected]>
2001-11-15 Derick Rethans <[email protected]>
* ext/standard/array.c
ext/standard/basic_functions.c
ext/standard/php_array.h: - MFH name change
2001-11-15 Thomas V.V.Cox <[email protected]>
* pear/PEAR/Installer.php
pear/scripts/pear.in: implemented "uninstall" command
2001-11-14 Stig Venaas <[email protected]>
* ext/ldap/ldap.c:
Fixed some memory leaks and removed some unnecessary checks due to
ZEND_FETCH_RESOURCE returning on error
2001-11-14 Frank M. Kromann <[email protected]>
* ext/fbsql/php_fbsql.c: Prevent fbsql_num_rows from looping
* ext/iconv/iconv.dsp: Fixing debug build
2001-11-14 Thomas V.V.Cox <[email protected]>
* pear/DB/pgsql.php:
make the DB_ERROR_ALREADY_EXISTS error regexp compatible with
Postgres 7.x also (will they someday implement error numbers? :-)
2001-11-14 Stig Bakken <[email protected]>
* pear/Makefile.in: * install Archive_Tar
2001-11-14 Sterling Hughes <[email protected]>
* ext/standard/file.c:
Many other reasons that setvbuf can fail than "wrong arguments", returning
false should be enough
2001-11-14 Christian Stocker <[email protected]>
* pear/Makefile.in: adding PEAR/Registry.php
2001-11-14 Derick Rethans <[email protected]>
* ext/standard/fsock.c: - Fix crashbug on dtor
2001-11-14 Christian Stocker <[email protected]>
* pear/PEAR/WebInstaller.php:
checking if package.xml.gz exists, before checking if it's writeable
2001-11-14 Sebastian Bergmann <[email protected]>
* pear/Math/Fraction.php: Hopefully fix this.
2001-11-13 Doug MacEachern <[email protected]>
* sapi/apache2filter/sapi_apache2.c: setup standard CGI variables
2001-11-13 Frank M. Kromann <[email protected]>
* ext/hyperwave/hg_comm.c: Fixing compile error
* ext/hyperwave/hyperwave.dsp: Fixing debug build
2001-11-13 Stig Venaas <[email protected]>
* ext/ldap/ldap.c:
Minor changes in ldap_connect(): fixed crash with OpenLDAP 2 libs when
called without args and also use ldap_init() rather than ldap_open();
simplified code a little
* ext/ldap/ldap.c
ext/ldap/php_ldap.h:
Removed some old cruft (some commented code and non-used globals), fixed
a proto typo, and make sure ldap_base_dn and ldap_filter are initialized
in php_ldap_do_search()
2001-11-13 Jani Taskinen <[email protected]>
* pear/tests/.cvsignore
ext/session/tests/.cvsignore
ext/zlib/tests/.cvsignore
ext/pcntl/tests/.cvsignore
ext/satellite/tests/.cvsignore
ext/mcrypt/tests/.cvsignore:
Added missing .cvsignore files and added *.reg into pear/tests/.cvsignore
* ext/pdf/Makefile.in
ext/pdf/config.m4:
Fixed some problems in configuring e.g. shared module.
2001-11-13 Rasmus Lerdorf <[email protected]>
* ext/gd/gd.c: MFH
* ext/gd/gd.c: Be explicit here and cast it
2001-11-13 Jani Taskinen <[email protected]>
* pear/DB/tests/db_error.phpt
pear/DB/tests/db_error2.phpt: MFH
* pear/DB/tests/db_error.phpt
pear/DB/tests/db_error2.phpt: Tests failed as the PEAR.php was modified.
2001-11-13 Rasmus Lerdorf <[email protected]>
* ext/standard/tests/math/pow.phpt: MFH
* ext/standard/tests/math/pow.phpt:
Fix most of these tests - still think there is a bug in the long->float
conversion stuff somewhere
* tests/quicktester.inc:
Let's just use the quicktester from HEAD since it seems to work and the
one in this branch is quite broken. Still plenty of failing tests we need
to work through here.
2001-11-13 Jani Taskinen <[email protected]>
* run-tests.php: Partial MFH.
2001-11-13 Rasmus Lerdorf <[email protected]>
* ext/standard/tests/file/001.phpt: MFH
* ext/standard/tests/file/001.phpt:
Different operating systems handle the group x bit differently, so
simplify this test to test the user x bit instead
2001-11-13 Jani Taskinen <[email protected]>
* tests/basic/002.phpt
tests/basic/003.phpt
tests/basic/004.phpt
tests/basic/005.phpt
tests/basic/011.phpt: MFH
* tests/basic/002.phpt
tests/basic/003.phpt
tests/basic/004.phpt
tests/basic/005.phpt:
Make these tests work regardless of the register_globals setting.
* ext/satellite/tests/003.phpt
ext/standard/tests/time/001.phpt: MFH
* ext/ctype/tests/001.phpt
ext/ctype/tests/002.phpt:
MFH (the use of strings for locale setting is deprecated)
2001-11-13 Derick Rethans <[email protected]>
* ext/curl/config.m4: - Check for cURL >= 7.8.1
2001-11-13 Zeev Suraski <[email protected]>
* ext/curl/curl.c: Fix name
* ext/curl/curl.c: Improve OpenSSL compatibility
2001-11-13 Jani Taskinen <[email protected]>
* ext/crack/config.m4: MFH
* ext/crack/config.m4: Fixed bug introduced by my last commit.
2001-11-13 James Moore <[email protected]>
* ext/standard/math.c: Lets cast this explicitly.
2001-11-13 Sterling Hughes <[email protected]>
* ext/curl/curl.c:
"Fix" last commit, to compile cURL with SSL support you must also use the
OpenSSL extension -- sorry...
The last commit caused bad things to happen if you were compiling cURL and
PHP on Win32 or if you compiled PHP --with-openssl, ie, re-initializing things
that were already initialized
2001-11-13 Derick Rethans <[email protected]>
* ext/xslt/sablot.c:
- Fix scheme/sax handlers (patch by Lenar Lõhmus <[email protected]>)
* ext/xslt/sablot.c:
- Fixed scheme/sax handlers (patch by Lenar Lõhmus <[email protected]>)
* sapi/apache/php_apache.c: - MFH
2001-11-13 Zeev Suraski <[email protected]>
* configure.in
main/php_version.h: Go with RC2
2001-11-13 Stig Bakken <[email protected]>
* pear/scripts/pear.bat
pear/scripts/pear.in
pear/scripts/pearwin.php
pear/tests/PEAR.r
pear/tests/PEAR.t
pear/tests/PEAR_Error.r
pear/tests/PEAR_Error.t
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/system.input
pear/tests/user.input
pear/XML/tests/001.phpt
pear/XML/tests/002.phpt
pear/XML/tests/003.phpt
pear/XML/tests/004.phpt
pear/XML/tests/005.phpt
pear/PEAR/Packlist.php
pear/PEAR/Registry.php
pear/PEAR/Remote.php
pear/PEAR/WebInstaller.php
pear/XML/Parser.php
pear/XML/RPC.php
pear/Net/Socket.php
pear/PEAR/Common.php
pear/PEAR/Config.php
pear/PEAR/Installer.php
pear/PEAR/Packager.php
pear/Mail/xmail.xsl
pear/Math/Fraction.php
pear/Math/Util.php
pear/Net/Curl.php
pear/HTML/Menu.php
pear/HTML/Menu_Browser.php
pear/HTML/Page.php
pear/Log/Observer.php
pear/Mail/RFC822.php
pear/Mail/mime.php
pear/Mail/mimeDecode.php
pear/Mail/mimePart.php
pear/Mail/smtp.php
pear/Mail/xmail.dtd
pear/Experimental/System.php
pear/File/Find.php
pear/HTML/Form.php
pear/HTML/ITX.php
pear/DB/tests/fetchmode_object.inc
pear/DB/tests/limit.inc
pear/DB/tests/mysql/13limit.phpt
pear/DB/tests/mysql/14fetchmode_object.phpt
pear/DB/tests/pgsql/010.phpt
pear/DB/tests/pgsql/13limit.phpt
pear/DB/tests/pgsql/14fetchmode_object.phpt
pear/DB/storage.php
pear/DB/sybase.php
pear/DB/tests/db_error.phpt
pear/DB/tests/db_error2.phpt
pear/DB/common.php
pear/DB/fbsql.php
pear/DB/ibase.php
pear/DB/ifx.php
pear/DB/msql.php
pear/DB/mssql.php
pear/DB/mysql.php
pear/DB/oci8.php
pear/DB/odbc.php
pear/DB/pgsql.php
pear/Benchmark/Iterate.php
pear/Cache/Container/file.php
pear/Cache/DB.php
pear/Cache/Graphics.php
pear/Console/Getopt.php
pear/DB/STATUS
pear/CODING_STANDARDS
pear/DB.php
pear/Log.php
pear/Makefile.in
pear/PEAR.php
pear/README
pear/System.php
pear/package.dtd: MFH: pear updates
2001-11-13 Zeev Suraski <[email protected]>
* ext/curl/curl.c: MFH - SSL fixes
2001-11-13 Stig Bakken <[email protected]>
* pear/scripts/pear.in: * command name changes
* pear/PEAR/Registry.php: * rename files to .reg (not .inf)
* pear/PEAR/Installer.php: * error message cleanup
* store registry object as property
2001-11-13 Zeev Suraski <[email protected]>
* ext/curl/curl.c: Import patch from bug #14023
2001-11-13 Jani Taskinen <[email protected]>
* ext/standard/basic_functions.c:
Fixed the wrong logic in ini_get_all() function.
Now it behaves same as how phpinfo() outputs the ini entries.
If there is a local value, then the global one is the 'original one' if
there is such. Otherwise global value is same as local. :)
2001-11-13 James Moore <[email protected]>
* ext/standard/string.c: MFH
2001-11-12 Jani Taskinen <[email protected]>
* ext/zlib/zlib.c: MFH
2001-11-12 Rui Hirokawa <[email protected]>
* sapi/cgi/cgi_main.c: fixed output problem with output buffering handler.
* ext/mbstring/mbstring.c:
fixed a bug in http input processing patched by Yasuo Ohgaki.
2001-11-12 Martin Jansen <[email protected]>
* pear/CODING_STANDARDS: * shame on me ...
2001-11-12 Daniel Beulshausen <[email protected]>
* ext/sockets/php_sockets.h
ext/sockets/php_sockets_win.c
ext/sockets/php_sockets_win.h
ext/sockets/sockets.c
ext/sockets/sockets.dsp: MFH latest changes
2001-11-12 Martin Jansen <[email protected]>
* pear/CODING_STANDARDS: * typo
2001-11-12 Richard Heyes <[email protected]>
* pear/Mail/xmail.xsl:
Addition of XSLT stylesheet to transform the output of Mail_mimeDecode::getXML()
back to an email.
* pear/Mail/xmail.dtd:
Addition of xmail.dtd. This is the DTD for the Mail_mimeDecode::getXML()
output.
* pear/Mail/mimeDecode.php: Updated email addy
* pear/Mail/mimeDecode.php: Updated TODO list
* pear/Mail/mimeDecode.php: Tabs --> spaces
* pear/Mail/mimeDecode.php:
Added functionality to convert the output to an XML representation.
2001-11-12 Jon Parise <[email protected]>
* pear/CODING_STANDARDS: Provide the full URL to pear.php.net.
2001-11-12 Markus Fischer <[email protected]>
* ext/sockets/sockets.c: Unified error/warning messages.
* ext/sockets/sockets.c: WS
* ext/sockets/sockets.c: Fix #14020 and some minor leaks.
2001-11-11 Rui Hirokawa <[email protected]>
* sapi/cgi/cgi_main.c: fixed output problem with output buffering handler.
2001-11-11 Jeroen van Wolffelaar <[email protected]>
* ext/standard/file.c:
Fix all (at least, I tried to catch all) proto's in file.c
* ext/standard/file.c: Add warning when set_file_buffer() fails
2001-11-11 Derick Rethans <[email protected]>
* ext/standard/array.c
ext/standard/basic_functions.c
ext/standard/php_array.h: - Renaming key_exists to array_key_exists
- Renamed key_exists tp array_key_exists.
2001-11-11 Thomas V.V.Cox <[email protected]>
* pear/DB/pgsql.php:
more DB_ERROR_ALREADY_EXISTS error maping for Postgres 6.x
2001-11-11 Stanislav Malyshev <[email protected]>
* ext/standard/basic_functions.c:
MFH: Fix crash bug on malformed .ini file
* ext/standard/basic_functions.c: Fix crash bug on malformed .ini file
2001-11-11 Thies C. Arntzen <[email protected]>
* ext/sysvshm/sysvshm.c: compile fix
2001-11-11 Zeev Suraski <[email protected]>
* main/output.c: MFH output buffering fixes
2001-11-11 Markus Fischer <[email protected]>
* pear/Console/Getopt.php: Add missing loop variable $i.
Suppress more warnings when using the option separator '--'.
* pear/Console/Getopt.php:
Suppress warning on long-options without an additional argument.
2001-11-11 Rasmus Lerdorf <[email protected]>
* ext/sysvshm/sysvshm.c: Fix for 14012
2001-11-11 Jani Taskinen <[email protected]>
* main/rfc1867.c:
Make the filesize 0 when upload fails. And changed the error messages to be different from each other.
* main/rfc1867.c:
Fix for bug: #14008. Still needs some minor changes but should give idea about this.
2001-11-11 Rasmus Lerdorf <[email protected]>
* NEWS
ext/gd/gd.c: MFH
2001-11-11 Andrei Zmievski <[email protected]>
* NEWS: Clean up.
2001-11-10 Andrei Zmievski <[email protected]>
* NEWS: MFH
* NEWS: Crash fix news.
* NEWS: Added crash fix news.
* ext/pcre/php_pcre.c
ext/standard/string.c: MFH
* ext/pcre/php_pcre.c: Fixed bug #13635.
* ext/standard/string.c: Fixed bug #13901.
2001-11-10 Sebastian Bergmann <[email protected]>
* win32/php4dll.dsp: No need to 'include' a .re file here.
2001-11-10 Shane Caraveo <[email protected]>
* sapi/fastcgi/fastcgi.c
sapi/fastcgi/fastcgi.dsp:
Make the win32 fastcgi compilable with the php4ts projects.
2001-11-10 Sascha Schumann <[email protected]>
* ext/standard/Makefile.in
ext/standard/php_var.h
ext/standard/var.c
ext/standard/var_unserializer.c
ext/standard/var_unserializer.re
win32/php4dll.dsp
win32/php4dllts.dsp
ext/session/php_session.h
ext/session/session.c:
Rewrite of unserializer which should be more maintainable and extensible.
Changes pass `make test´ and a couple of custom tests.
Enjoy.
2001-11-10 Derick Rethans <[email protected]>
* ext/standard/basic_functions.c
ext/standard/file.c
ext/standard/file.h: - Fixing this bad idea
2001-11-10 James Moore <[email protected]>
* ext/standard/file.c
ext/standard/file.h
ext/standard/basic_functions.c: Fix apache win32 dso build.
(This is untested on linux but shouldnt break anything)
2001-11-10 Rasmus Lerdorf <[email protected]>
* ext/gd/gd.c:
Fix ImageColorsForIndex() and ImageColorAt() to work for TrueColor images.
2001-11-10 Derick Rethans <[email protected]>
* ext/standard/credits.c:
- Correcting Goba's name, and adding me to QA team
2001-11-10 Thomas V.V.Cox <[email protected]>
* pear/DB/odbc.php: proper initialization of the $row array in fetchInto
(suggested by yavo <[email protected]>)
2001-11-10 Martin Jansen <[email protected]>
* pear/PEAR/WebInstaller.php: * some minor improvements
2001-11-10 Jani Taskinen <[email protected]>
* ext/gd/config.m4: Fixed bug: #13955.Checks now for png_write_image().
2001-11-10 Frank M. Kromann <[email protected]>
* ext/fbsql/php_fbsql.c: Make fbsql_list_fields work as documented
2001-11-09 Jon Parise <[email protected]>
* ext/gettext/config.m4
ext/gettext/gettext.c
ext/gettext/php_gettext.h:
Added support for bind_textdomain_codeset(). ([email protected])
2001-11-09 Alan Brown <[email protected]>
* ext/com/COM.c:
Not all components populate every field in the ExceptInfo structure. Thus we sometimes would try to convert NULL strings and see php_OLECHAR_to_char errors while displaying Exception information. This version is a little smarter about the member derefencing and the resulting error string.
2001-11-09 Sascha Schumann <[email protected]>
* ext/ircg/ircg.c:
Move code which refers to conditional structure elements into the
same #ifdefs.
Thanks to Sebastian for noticing this.
* ext/ircg/ircg.c:
Some reformatting and addition of {{{..}}} and a fix for a missing
header file when compiling against older IRCG versions.
2001-11-08 Derick Rethans <[email protected]>
* ext/pdf/pdf.c: - oops :)
* ext/pdf/pdf.c
ext/pdf/php_pdf.h: - Let it also work with pdflib 3 again
2001-11-08 Rui Hirokawa <[email protected]>
* ext/mbstring/mbstring.c:
fixed a bug in http input processing patched by Yasuo Ohgaki.
2001-11-08 Egon Schmid <[email protected]>
* ext/pcntl/pcntl.c: Some protos fixed.
2001-11-08 Richard Heyes <[email protected]>
* pear/Mail/mimePart.php: Compatibility with broken mailers
2001-11-08 Egon Schmid <[email protected]>
* ext/mysql/php_mysql.c: More protos fixed.
* ext/mailparse/mailparse.c:
Fixed some protos and many more will follow the next hour.
2001-11-08 Adam Dickmeiss <[email protected]>
* ext/yaz/config.m4:
Use PHP_ADD_LIBRARY_DEFER and PHP_ADD_LIBPATH instead of
PHP_EVAL_LIBLINE to prevent configure error.
2001-11-08 Egon Schmid <[email protected]>
* ext/dbx/dbx.c: There are some rules.
2001-11-08 Derick Rethans <[email protected]>
* ext/mysql/php_mysql.c
ext/pcntl/pcntl.c
ext/dbx/dbx.c
ext/mailparse/mailparse.c: - prototypes
* ext/posix/posix.c: - Prototypes
2001-11-08 Thomas V.V.Cox <[email protected]>
* pear/DB/tests/mysql/14fetchmode_object.phpt
pear/DB/tests/fetchmode_object.inc
pear/DB/tests/pgsql/14fetchmode_object.phpt:
Added tests for DB_FETCHMODE_OBJECT
* pear/DB.php
pear/DB/common.php:
- By default DB_FETCHMODE_OBJECT will do a cast to object from the row
array (twice fast than with DB_Row)
- API Doc updates/fixs
2001-11-08 Sebastian Bergmann <[email protected]>
* php.ini-recommended
php.ini-dist: Add php_w32api.dll
* win32/php_modules.dsw: Add ext/w32api
2001-11-07 Martin Jansen <[email protected]>
* pear/HTML/ITX.php: * Remove evil tabs caused by a previous patch
* pear/HTML/ITX.php: * Patch by Dietrich Ayala <[email protected]>
2001-11-07 James Moore <[email protected]>
* ext/w32api/test_dll/test_dll.def
ext/w32api/test_dll/test_dll.dsp
ext/w32api/test_dll/test_dll.dsw
ext/w32api/test_dll/dll_test.h
ext/w32api/test_dll/test.php
ext/w32api/test_dll/test_dll.c
ext/w32api/examples/uptime.php
ext/w32api/php_w32api.h
ext/w32api/w32api.c
ext/w32api/w32api.dsp
ext/w32api/TODO
ext/w32api/README
ext/w32api/CREDITS
ext/w32api/EXPERIMENTAL
ext/w32api/.cvsignore: - Add generic Win 32 API extension (jmoore)
* ext/standard/datetime.c:
- Fix Bug 9878 (patch by [email protected]) (jmoore)
2001-11-07 Stig Bakken <[email protected]>
* pear/PEAR/Registry.php:
* store registry data in PEAR_INSTALL_DIR/.registry instead of /var/something
* pear/scripts/pear.in: * fix "list" command
* pear/PEAR/Config.php: typo
2001-11-06 Chuck Hagenbuch <[email protected]>
* pear/Log.php: fix the singleton and factory methods for
a). php 4.0.6 (where include_once might return false)
b). to use references and not copy so many objects
* pear/Mail/smtp.php: fix typo.
2001-11-06 Jon Parise <[email protected]>
* ext/standard/assert.c: It doesn't look like we use a fourth pointer.
2001-11-06 Thomas V.V.Cox <[email protected]>
* pear/DB/oci8.php: typo: modifyQuery -> modifyLimitQuery
2001-11-06 MySQL Team <[email protected]>
* ext/mysql/libmysql/charset.c
ext/mysql/libmysql/libmysql.c:
(PHP mysql_connect) Removed warning message regarding NONEXISTENT character
set, when the server's default character set != latin1.
2001-11-06 Chuck Hagenbuch <[email protected]>
* pear/Mail/smtp.php:
these should all be checking for PEAR::isError(), not ! ...
* pear/DB/odbc.php:
this code _does_ work on versions of php without version_compare.
also, silence an odbc_exec() call with an @ - we check for errors already.
2001-11-06 Jon Parise <[email protected]>
* ext/sockets/php_sockets.h: Include <sys/socket.h> for 'struct sockaddr'.
2001-11-06 Sterling Hughes <[email protected]>
* ext/dio/.cvsignore
ext/dio/EXPERIMENTAL
ext/dio/Makefile.in
ext/dio/config.m4
ext/dio/dio.c
ext/dio/php_dio.h
ext/dio/tests/001.phpt:
Add Direct I/O extension for lowlevel access to the POSIX layer. (sterling)
2001-11-06 Thomas V.V.Cox <[email protected]>
* pear/scripts/pear.in
pear/PEAR/Packager.php
pear/PEAR/Common.php: E_ALL fixes
2001-11-05 Sergey Kartashoff <[email protected]>
* ext/mnogosearch/php_mnogo.c
ext/mnogosearch/php_mnogo.h: - Added Udm_Check_Charset function (gluke)
- Added Udm_Check_Charset function (gluke)
2001-11-05 Sascha Schumann <[email protected]>
* ext/ircg/ircg.c
ext/ircg/php_ircg.h:
Support requesting a resource upon the irc connection end
2001-11-05 Alex Waugh <[email protected]>
* EXTENSIONS
sapi/webjames/.cvsignore
sapi/webjames/CREDITS
sapi/webjames/Makefile.in
sapi/webjames/README
sapi/webjames/config.m4
sapi/webjames/php_webjames.h
sapi/webjames/webjames.c:
New SAPI module for the WebJames server on RISC OS
2001-11-05 Stig Venaas <[email protected]>
* ext/ldap/ldap.c:
Fixed seg fault when using ldap_add (or modify) with value array not
indexed as 0, 1, ... In some cases it didn't give seg fault, but used
previously added value. Now gives warning.
2001-11-05 Martin Jansen <[email protected]>
* pear/HTML/ITX.php: * Fix bug #13926
2001-11-04 Alex Waugh <[email protected]>
* sapi/cgi/cgi_main.c: Convert PATH_TRANSLATED for RISC OS
* ext/standard/fsock.c: Undefine AF_UNIX when compiled for RISC OS
* ext/mysql/libmysql/global.h:
Make sure uint et al are undefined before typedefing them
* ext/ftp/ftp.c
main/network.c: Included header files needed by RISC OS
2001-11-04 Stig Bakken <[email protected]>
* pear/tests/pear_error2.phpt
pear/tests/pear_error3.phpt
pear/tests/pear_error4.phpt
pear/PEAR.php
pear/tests/pear_error.phpt:
* expectError() now accepts "*" as a catch-all
* updated tests
2001-11-04 Sergey Kartashoff <[email protected]>
* ext/mnogosearch/index.php:
* ext/mnogosearch/index.php:
- mnoGoSearch extension example updated to support words hilighting (gluke)
2001-11-04 Jani Taskinen <[email protected]>
* ext/standard/exec.c: ws fix
* pear/XML/tests/001.phpt
pear/XML/tests/002.phpt
pear/XML/tests/003.phpt
pear/XML/tests/004.phpt
pear/XML/tests/005.phpt: Skip if XML module is not available.
* ext/cybermut/tests/.cvsignore
ext/dbx/tests/.cvsignore
ext/pcntl/tests/.cvsignore: missing cvsignore
2001-11-03 Sergey Kartashoff <[email protected]>
* ext/mnogosearch/index.php: