forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
27174 lines (18879 loc) · 786 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
2002-01-01 Markus Fischer <[email protected]>
* ext/ftp/php_ftp.c
ext/ftp/php_ftp.h:
- Switched to zend_parse_parameters(), unified error/warning messages,
use real resources instead of integers, adjusted prototypes (hope I got
them all).
* NEWS: - Summarize dbase fixes.
2002-01-01 Adam Dickmeiss <[email protected]>
* ext/yaz/php_yaz.c:
Removal of non-essential parameters for non-piggyback search.
2001-12-31 Jon Parise <[email protected]>
* ext/overload/overload.c:
Match the table style of the other single-row info entries.
2001-12-31 Thomas V.V.Cox <[email protected]>
* pear/DB/tests/tableinfo.inc: E_ALL fixes
* pear/DB/mysql.php:
Always use mysql_select_db() before each query to ensure a working
support of multiple database connections in the same script
2001-12-31 Vlad Krupin <[email protected]>
* ext/dbase/dbf_rec.c:
Now dbase_pack() actually truncates the resulting .dbf file to the right
size (possibly fixing bug #6852 #3).
2001-12-31 Jan Lehnardt <[email protected]>
* pear/HTML/Menu_Browser.php: fix typo
2001-12-31 Martin Jansen <[email protected]>
* pear/XML/tests/001.phpt
pear/XML/tests/002.phpt
pear/XML/tests/003.phpt
pear/XML/tests/005.phpt: * tabs -> spaces.
2001-12-31 Vlad Krupin <[email protected]>
* ext/dbase/dbase.c:
Verified and fixed bug 6852 #2. Now memo fields are 10 butes long, not 9.
That does not seem to affect how the code works except when creating a new
structure, in which case 'M' fields used to get created with size 9.
* ext/dbase/dbase.c:
Verified and fixed bug 6852 #1. No more null byte after terminating 0x0D.
Verified that the problem is real when creating new files and writing
a record. Both fixed and old versions seem to be able to somehow read
and write already existing files properly though.
2001-12-31 Egon Schmid <[email protected]>
* ext/notes/php_notes.c: Oops, missed one proto.
* ext/notes/php_notes.c
ext/ncurses/ncurses_functions.c: Fixed some protos.
2001-12-30 Georg Richter <[email protected]>
* ext/ncurses/ncurses_functions.c:
some prototypes changed
2001-12-30 Alex Waugh <[email protected]>
* acinclude.m4:
Give defaults for pread and pwrite checks when cross compiling
2001-12-30 Zak Greant <[email protected]>
* ext/standard/dir.c:
chdir: corrected proto, converted to zend_parse_parameters
* ext/mysql/php_mysql.c:
Corrected bug in php_mysql_fetch_hash() that prevented columns with NULL values from having both numeric and associative indexes. (Bug 14291)
* ext/standard/dir.c:
chroot: corrected prototype, converted to zend_parse_parameters
* ext/standard/basic_functions.c:
Converted getenv to use zend_parse_parameters
2001-12-30 Rui Hirokawa <[email protected]>
* ext/fdf/Makefile.in: added libfdftk for link path to make shared module.
2001-12-30 Egon Schmid <[email protected]>
* ext/ircg/ircg.c: Fixed some protos.
* ext/ftp/php_ftp.c: Fixed a proto.
* ext/fbsql/php_fbsql.c
ext/dbplus/php_dbplus.c
ext/cybermut/cybermut.c: Fixed some protos.
2001-12-30 Yasuo Ohgaki <[email protected]>
* ext/session/session.c: Fix crash (MFH)
* ext/session/session.c: Get rid of error message
2001-12-29 Derick Rethans <[email protected]>
* ext/standard/basic_functions.c
ext/standard/basic_functions.h: - Removed is_array_multidimensional
* ext/standard/tests/array/count_recursive.phpt:
- Added test for recursive counting
* ext/standard/array.c
ext/standard/basic_functions.c
ext/standard/basic_functions.h:
- Added extra parameter to count() that recursively counts elements in an
array and added is_array_multidimensional(). (patch by Vlad Bosinceanu
2001-12-29 Andi Gutmans <[email protected]>
* ext/standard/array.c:
Fix bug in krsort() where an extra character was being compared
- Fix bug in krsort() where an extra character was being compared (Andi)
* ext/xml/xml.c:
- Fix bug in XML extension which exists due to a not perfect work around
- with ZE1. In ZE2 the correct code seems to work well.
2001-12-29 Sebastian Bergmann <[email protected]>
* ext/standard/credits.c
ext/standard/info.c:
PHP 4.0 -> PHP 4. Patch by Martin Jansen <[email protected]>.
2001-12-29 Georg Richter <[email protected]>
* ext/ncurses/ncurses.c
ext/ncurses/ncurses_fe.c
ext/ncurses/ncurses_functions.c
ext/ncurses/php_ncurses_fe.h:
1) fixed bugs in soft label key functions
2) insert new slk-functions
3) defined new key-constants
2001-12-29 Stig Bakken <[email protected]>
* pear/DB/common.php: * added grouping parameter to getAssoc
* pear/Makefile.in: * install PEAR/Dependency.php
2001-12-29 Vlad Krupin <[email protected]>
* ext/pspell/pspell.c:
fixed bug preventing pspell from building when pspell header files are
located in an unusual (e.g. /usr/local/include/pspell) location.
2001-12-28 Thomas V.V.Cox <[email protected]>
* pear/PEAR/Common.php:
- Rewrote infoFromTgzFile() (Stig, no more "pedantic" :-)
- Added <description> tag for package.xml
- Temporal fix arround php bug #14744 and temp files cleaning
2001-12-28 Richard Heyes <[email protected]>
* pear/Cache/Application.php:
Implements "application level" variables (or an application session). Uses
Cache/Container/* for storing the data. Usage examples in the file.
2001-12-28 Martin Jansen <[email protected]>
* pear/HTML/Menu.php: * E_ALL fix.
2001-12-28 Georg Richter <[email protected]>
* ext/ncurses/ncurses_fe.c
ext/ncurses/ncurses_functions.c
ext/ncurses/php_ncurses_fe.h:
mouse support for ncurses added:
ncurses_getmouse, ncurses_ungetmouse, ncurses_mouse_trafo, ncurses_wmouse_trafo
2001-12-28 Stig Bakken <[email protected]>
* pear/package.dtd: * added <description> element in <package>
2001-12-27 Dan Kalowsky <[email protected]>
* ext/standard/dns.c: Making PHP compile again on MacOSX 10.1
2001-12-27 Thomas V.V.Cox <[email protected]>
* pear/Date/Calc.php: Hope to be the right fix for bug #13975
* pear/DB/mssql.php:
mssql_get_last_message() has been reportered that always is returning
data, so don't use it as a test for errors in fetchInto
* pear/DB/ifx.php: enhance freeResult
* pear/DB/ibase.php: implemented freeResult()
* pear/DB/oci8.php: Changes to modifyLimitQuery:
- Don't move the ORDER BY clausule it may alter the final result
- Restrict the first subquery to speed up the row fetching
- Introduce the FIRST_ROWS Oracle query optimizer (yet disabled)
(thanks to John Lim for the recommendations)
* pear/PEAR/Common.php:
switch to use the xml end tag function for correct handling
of multiline tag contents
2001-12-27 Georg Richter <[email protected]>
* ext/ncurses/ncurses_fe.c
ext/ncurses/ncurses_functions.c
ext/ncurses/php_ncurses_fe.h:
Added new functions: ncurses_waddstr, ncurses_wnoutrefresh, ncurses_wclear,
ncurses_wcolorset, ncurses_wgetch, ncurses_keypad, ncurses_wmove
minor changes in protos.
Special Thanx to Mathieu Kooiman for submitting his patches!
2001-12-27 Markus Fischer <[email protected]>
* main/config.w32.h: - MFH fix for crash in get_defined_constants().
2001-12-26 Stig Venaas <[email protected]>
* ext/ldap/ldap.c: unbreak parallel search
2001-12-26 Rui Hirokawa <[email protected]>
* ext/mbstring/mbstring.c
ext/mbstring/mbstring.h:
added code to remove overloaded function in RSHUTDOWN.
2001-12-26 Derick Rethans <[email protected]>
* ext/mcrypt/mcrypt.c: - MFH for bug 14690
* ext/mcrypt/mcrypt.c: - Fix for bug 14690
2001-12-26 Yasuo Ohgaki <[email protected]>
* EXTENSIONS: Added msession
2001-12-26 Thomas V.V.Cox <[email protected]>
* pear/scripts/pear.in: added default target for installing documentation
* pear/Console/Getopt.php: reverted the last change for now
* pear/PEAR/Installer.php:
- Install files marked as "role=doc" in a central PEAR doc dir
(defaults to PHP_DATADIR/pear/doc/Package_name/)
- Store a new property of each installed file ['installed_as'] for
easy uninstall
2001-12-26 Yasuo Ohgaki <[email protected]>
* ext/session/session.c: Fix crash with external session save handlers
2001-12-26 Stig Bakken <[email protected]>
* pear/System.php: * use "windir" env.var on Windows too
* pear/System.php:
* added System::tmpdir() method (now uses SystemRoot env.var on Windows)
2001-12-26 Mark L. Woodward <[email protected]>
* ext/msession/msession.c: Moved "ifdef HAVE_PHP_SESSION" oops!
2001-12-25 Georg Richter <[email protected]>
* ext/ncurses/ncurses.c
ext/ncurses/ncurses_fe.c
ext/ncurses/ncurses_functions.c
ext/ncurses/php_ncurses_fe.h:
activated ncurses_instr
New functions: ncurses_longname, ncurses_termname, ncurses_mousemask
2001-12-25 Derick Rethans <[email protected]>
* ext/mcrypt/mcrypt.c: - MFH: Remove redundant code
* ext/mcrypt/mcrypt.c:
- Fix for bug 14691: Invalidate mcrypt resource if the key size is 0
2001-12-25 Stig Venaas <[email protected]>
* ext/ldap/config.m4
ext/ldap/ldap.c:
Added check for ldap_parse_reference() (needed for broken Solaris 2.8), and
report more detailed library version info in the info function.
2001-12-25 Georg Richter <[email protected]>
* ext/ncurses/ncurses_functions.c:
functions ncurses_erasechar, ncurses_inch, mcurses_killchar:
changed return values from bool to string (char)
2001-12-25 Stig Bakken <[email protected]>
* pear/DB/common.php: * implemented DB_FETCHMODE_ASSOC mode for getAssoc
2001-12-24 Rui Hirokawa <[email protected]>
* NEWS: added my name for NEWS.
2001-12-24 Sterling Hughes <[email protected]>
* ext/curl/curl.c:
Avoid a segfault when 0 bytes are returned from a website, and RETURNTRANSFER is enabled.
2001-12-23 Thomas V.V.Cox <[email protected]>
* pear/PEAR/Common.php:
added the <license> tag under <release> for the package.xml file
2001-12-23 Mark L. Woodward <[email protected]>
* ext/msession/msession.c: Major cleanup
* ext/msession/msession-test.php:
A php script which shows how to use msession with PHP sessions
* ext/msession/README: Added php.ini entry info.
2001-12-23 Zeev Suraski <[email protected]>
* win32/install.txt: Update installation instructions (Marco Kaiser)
2001-12-23 Stig Venaas <[email protected]>
* EXTENSIONS: changed address
* ext/ldap/ldap.c
ext/ldap/php_ldap.h:
Made ldap_set_option work with NULL as link, added option
LDAP_OPT_DEBUG_LEVEL for those that support it, and made sure the rebind
code is currently included for OpenLDAP only.
2001-12-23 Markus Fischer <[email protected]>
* ext/standard/reg.c: - Fix tiny leak.
2001-12-23 Rui Hirokawa <[email protected]>
* ext/mbstring/mbstring.c
ext/mbstring/mbstring.h:
added function overload in mbstring to add multibyte support for string and mail functions.
2001-12-23 Alex Waugh <[email protected]>
* ext/mysql/libmysql/acinclude.m4
ext/mysql/php_mysql.c: Check for ushort
2001-12-23 Thomas V.V.Cox <[email protected]>
* pear/DB/storage.php: Call-time pass-by-reference fixes
2001-12-23 Mark L. Woodward <[email protected]>
* ext/msession/README
ext/msession/msession.c
ext/msession/php_msession.h:
Renamed msession_getdata and msession_setdata to
msession_get_data and msession_set_data respectively.
2001-12-23 Derick Rethans <[email protected]>
* ext/zip/zip.c:
- Fix for bug 14554 - segfault upon zip_entry_open. (patch by
* NEWS: - Last fixes to NEWS
2001-12-23 Alex Waugh <[email protected]>
* ext/standard/ftp_fopen_wrapper.c
ext/standard/http_fopen_wrapper.c
main/fopen_wrappers.c
main/network.c: Undefine AF_UNIX under RISC OS
* ext/mysql/libmysql/acinclude.m4: Cache results of check for int8
2001-12-23 Richard Heyes <[email protected]>
* pear/Mail/mimeDecode.php:
Fixed getXML() method to not barf when no bodies
2001-12-22 Hartmut Holzgraefe <[email protected]>
* ext/msession/msession.c: re-added prototype folding hooks
* ext/msession/msession.c: *now* it is backwards compatible ...
2001-12-22 Rasmus Lerdorf <[email protected]>
* EXTENSIONS: .
2001-12-22 Mark L. Woodward <[email protected]>
* ext/msession/msession.c:
Toned down a comment that was written in the heat of the moment.
2001-12-22 Derick Rethans <[email protected]>
* ext/standard/math.c: - Let ceil also return a float in every case
* ext/standard/tests/math/floorceil.phpt: - Add test for floor and ceil
2001-12-22 Zak Greant <[email protected]>
* ext/standard/array.c
ext/standard/tests/array/001.phpt:
Modified array_walk, arsort, asort, krsort, ksort, rsort, shuffle, sort,
uasort, uksort and usort.
Corrected prototype comments for all.
Converted to use zend_parse_parameters, except for the u.?sort functions.
Changed return values for failure from implicit NULL to explicit FALSE in
asort(), krsort(), and ksort().
Changed pval to zval in the u.?sort functions.
Added test to help ensure that fixes to code do not change function
behavior. Tests are quite large (~237k) but compress down to ~16k.
Please let me know if this is a problem!
2001-12-22 Stig Bakken <[email protected]>
* pear/HTML/Form.php: * set enctype automatically when adding files
* pear/PEAR/Common.php:
* add "pedantic" mode in infoFromTgzFile and skip some checks if not
pedantic
2001-12-22 Zeev Suraski <[email protected]>
* NEWS: Update NEWS
* sapi/isapi/php4isapi.c: MFH
* sapi/isapi/php4isapi.c: Fix incompatibility with Windows .NET (IIS 6)
May also improve stability under other Windows versions
* ext/standard/reg.c: Fix a warning
* ext/pcre/php_pcre.c:
Fix a warning and remove a printf() that slipped in...
2001-12-22 Mark L. Woodward <[email protected]>
* ext/msession/php_msession.h
ext/msession/reqclient.h: Added msession_call
* ext/msession/msession.c: reverted chages
Restored zend_get_parameters_ex
Put back ansi brackets
Added author note.
Added msession_call
2001-12-21 Yasuo Ohgaki <[email protected]>
* pear/Makefile.in: Install session module haeder
2001-12-21 Derick Rethans <[email protected]>
* ext/standard/math.c:
- Fix for bug #14646, floor() always returns a float now.
2001-12-21 Ulf Wendel <[email protected]>
* pear/File/Passwd.php: - whitespace only, tabs replaces by spaces
- added some space around operators
2001-12-21 Derick Rethans <[email protected]>
* NEWS: - More cleanup
* NEWS: - Typo
2001-12-21 Markus Fischer <[email protected]>
* ext/mailparse/mailparse.c: - Typo.
2001-12-21 Derick Rethans <[email protected]>
* ext/standard/file.c:
- Added open basedir checks to file functions. (Patch by
Christoph Kassen <[email protected]>)
2001-12-21 Sean Bright <[email protected]>
* ext/standard/file.c: Use memset() instead.
* ext/standard/file.c:
Initialize variable to avoid bogus data and possible segfault.
* ext/standard/file.c:
Switched some functions to use zend_parse_parameters, cleaned up some
unused variables and some whitespace work.
2001-12-20 Derick Rethans <[email protected]>
* configure.in
main/php_version.h
NEWS: Go with 4.1.1
2001-12-20 Frank M. Kromann <[email protected]>
* win32/php_modules.dsw:
Removed Win32 specific projects. These are now located in pear/PECL
* win32/sendmail.c: Adding cvs ID
2001-12-20 Colin Viebrock <[email protected]>
* pear/Crypt/CBC.php: MFH
* pear/Crypt/CBC.php: Really fix it this time ...
* pear/Crypt/CBC.php: Fix
2001-12-20 Sebastian Bergmann <[email protected]>
* ext/mcrypt/php_mcrypt.h: Update header.
2001-12-20 Colin Viebrock <[email protected]>
* ext/mcrypt/mcrypt.c
ext/mcrypt/php_mcrypt.h: Add headers and Id lines
2001-12-20 Martin Jansen <[email protected]>
* pear/Experimental/Image/gtext.php: * Typo
2001-12-20 Ulf Wendel <[email protected]>
* pear/Experimental/Image/gtext.php: require graphics cache
* pear/Experimental/Image/color_helper.php:
if we do the comparison to lowercase, we need a lowercase list...
* pear/Cache/Graphics.php:
- names graphics files "id.type", otherwise your webserver will not
recognize the type and send wrong headers
2001-12-20 Markus Fischer <[email protected]>
* ext/domxml/php_domxml.c:
- Fix crash with EntityRef nodes (and properly support them).
2001-12-20 Yasuo Ohgaki <[email protected]>
* ext/pgsql/README: Added when experimental functions are added.
2001-12-19 Ulf Wendel <[email protected]>
* pear/HTML/Menu.php: PHP_SELF & friends went to $_SERVER since 4.1.0
2001-12-19 Thomas V.V.Cox <[email protected]>
* pear/DB/odbc.php:
free the result when is a resource or free the statement if not
in freeResult()
2001-12-19 Ulf Wendel <[email protected]>
* pear/Cache/Container/msession.php:
flag if to establish a msession connectio or reuse one
* pear/Cache/Container/msession.php:
Experimental, untested msession container - should be fast
2001-12-19 Yasuo Ohgaki <[email protected]>
* ext/pgsql/README:
Updated README. Module will not cancel queued query sent.
* ext/pgsql/pgsql.c: Do not cancel queued query automatically.
2001-12-18 Yasuo Ohgaki <[email protected]>
* ext/pgsql/pgsql.c: More proper error message.
Remove old lines that aren't needed.
* ext/pgsql/config.m4: Get rid of useless path from seach path
2001-12-18 Andrei Zmievski <[email protected]>
* ext/pcre/php_pcre.c:
- Added flags parameter to preg_grep(). The only flag currently is
PREG_GREP_INVERT that will make the function return entries that
did not match.
2001-12-18 Sascha Schumann <[email protected]>
* ext/ircg/ircg.c:
Let the first connection id be a function of the time to avoid
problems with restarting IRCG and stale sessions.
2001-12-18 Frank M. Kromann <[email protected]>
* ext/fbsql/fbsql.dsp:
Adding missing define, needed to build with FrontBase 3.4 and later
2001-12-18 Martin Jansen <[email protected]>
* pear/System.php: * Change CVS Version keyword to Revision.
2001-12-18 Colin Viebrock <[email protected]>
* pear/Crypt/CBC.php: merge into head
2001-12-18 Joao Prado Maia <[email protected]>
* pear/Crypt/CBC.php: Fixing indentation and missing ?> tag
2001-12-18 Colin Viebrock <[email protected]>
* pear/Crypt/CBC.php:
Remove support for buggy 2.2.x libmcrypt, and add some better error handling
2001-12-18 Martin Jansen <[email protected]>
* pear/HTTP.php: * Convert tabs to spaces.
2001-12-18 Hartmut Holzgraefe <[email protected]>
* ext/skeleton/create_stubs: typo fix
2001-12-18 Thomas V.V.Cox <[email protected]>
* pear/scripts/pear.in: that makes more sense
* pear/scripts/pear.in: quick fix for the "pear info" command
2001-12-17 Frank M. Kromann <[email protected]>
* ext/isxfunc/.cvsignore
ext/isxfunc/CREDITS
ext/isxfunc/ixsfunc.cpp
ext/isxfunc/ixsfunc.dsp
ext/isxfunc/ixsfunc.h
ext/isxfunc/setup.c
ext/isxfunc/setup.h:
Adding new extension used to query Microsift Index Server.
Only available on WIn32
2001-12-17 Derick Rethans <[email protected]>
* NEWS: Make it look purty
* main/main.c: MFH
2001-12-17 Thomas V.V.Cox <[email protected]>
* pear/PEAR/Installer.php: Added dependencies check support for Installer
* pear/PEAR/Common.php:
ensure correct package names and versions in the xml parser
* pear/PEAR/Dependency.php:
- Added callCheckMethod() for making easy the integration with
the PEAR_installer class
- Reverted the logic of the returned value of the check methods.
They will return false on no error or the error string on error
- Added signOperator() to output the representation of the operator
with signs instead of letters ('ge' -> '>=')
- Other minor changes
2001-12-17 Hartmut Holzgraefe <[email protected]>
* ext/xml/xml.c: proto fix
2001-12-17 Derick Rethans <[email protected]>
* ext/mcrypt/mcrypt.c: MFH backward compability issues with libmcrypt
* ext/mcrypt/mcrypt.c:
- Try to be a little bit more sane dealing backwards compability
2001-12-17 Hartmut Holzgraefe <[email protected]>
* ext/mssql/php_mssql.c: proto fix
2001-12-17 Thomas V.V.Cox <[email protected]>
* pear/Mail.php:
call PEAR::raiseError() instead of $this->raiseError() in factory()
2001-12-17 Rui Hirokawa <[email protected]>
* ext/mbstring/mbstring.c:
output encoding translation turn off in mb_output_handler() when non-text (binary) data was sent.(Patched by Kanemoto.)
2001-12-17 Ulf Wendel <[email protected]>
* pear/Cache/Container/file.php: - removed the deeper nesting again
Sorry for this forth-and-back. I should have metered the default
smarty policy before copying it. The change gave a slowdown on
fetch() of at least 20% - I didn't expect that.
2001-12-17 Hartmut Holzgraefe <[email protected]>
* ext/pgsql/pgsql.c: yet another proto fix
* ext/pgsql/pgsql.c: proto fixes
* ext/pgsql/pgsql.c: proto fix
2001-12-17 Ulf Wendel <[email protected]>
* pear/Cache.php: - included PEAR.php
- flush(): consistent cache group defaults
* pear/Cache/Container/file.php:
- deeper directory structure, e.g. cache/default/f0/f0xxx to reduce
filesystem overhead with for a large number of cache entries
- bugfix: Windows does not like '/c:/cache'...
- cosmetics
2001-12-17 Hartmut Holzgraefe <[email protected]>
* ext/ccvs/ccvs.c: added proto descriptions
2001-12-17 Yasuo Ohgaki <[email protected]>
* ext/pgsql/tests/dropdb.inc: Actually drop test table.
* ext/pgsql/tests/config.inc
ext/pgsql/tests/skipif.inc: Use database named test for testing
* ext/mbstring/mbstring.c: Fix compile error
* ext/pgsql/pgsql.c
ext/pgsql/php_pgsql.h: Funtion rename:
Functions are renamed accoding to coding stanard. Some functions has
completely different name now.
New functions:
pg_copy_to()/pg_copy_from() - by Youichi Iwakiri <[email protected]>
pg_lo_tell()/pg_lo_seek()/pg_result_error()/pg_result_status()
pg_escape_string()/pg_escape_bytea() - Only pgsql 7.2 or later.
Fixed:
Wrong mode when clean up connection resource.
Compiler warning for pg_encoding_to_char().
* ext/pgsql/tests/01createdb.phpt
ext/pgsql/tests/02connection.phpt
ext/pgsql/tests/03sync_query.phpt
ext/pgsql/tests/04async_query.phpt
ext/pgsql/tests/05large_object.phpt
ext/pgsql/tests/06copy.phpt
ext/pgsql/tests/07optional.phpt
ext/pgsql/tests/98old_api.phpt
ext/pgsql/tests/9999dropdb.phpt
ext/pgsql/tests/async_query.inc
ext/pgsql/tests/config.inc
ext/pgsql/tests/connection.inc
ext/pgsql/tests/copy.inc
ext/pgsql/tests/createdb.inc
ext/pgsql/tests/dropdb.inc
ext/pgsql/tests/large_object.inc
ext/pgsql/tests/old_api.inc
ext/pgsql/tests/optional.inc
ext/pgsql/tests/skipif.inc
ext/pgsql/tests/sync_query.inc: Added test files
2001-12-16 Stefan Esser <[email protected]>
* main/SAPI.c: fixed: fix for my broken patch.
* main/SAPI.c: fixed: fix for my broken patch
2001-12-16 Rui Hirokawa <[email protected]>
* ext/mbstring/mbstring.c
ext/mbstring/mbstring.h:
added an option mbstring.func_overload to overload some function by multibyte enabled version of function in mbstring.
2001-12-16 Zeev Suraski <[email protected]>
* main/main.c:
Freeing that TLS is just too complicated. Since we're shutting
down anyway, remove it for now (it did not exist in 4.0.6)
2001-12-16 Derick Rethans <[email protected]>
* NEWS: Add entries
* NEWS: - More MHFs
* NEWS: Update NEWS
2001-12-16 Stefan Esser <[email protected]>
* main/rfc1867.c: whitespace. - now i know how code should look like ...
* main/SAPI.c: whitespace.
* main/SAPI.c: MFH : one byte heap corruption fixed
* main/SAPI.c:
fixed: WWW-Authenticate -> header_line got only freed when safe_mode was activ
fixed: WWW-Authenticate -> content of header_line was changed after it was freed
2001-12-16 Derick Rethans <[email protected]>
* ext/mcrypt/mcrypt.c: Make this compile again
2001-12-16 Sam Ruby <[email protected]>
* INSTALL: Update for 4.1
2001-12-16 Thomas V.V.Cox <[email protected]>
* pear/PEAR/Common.php: added support for <deps> and <dep> tags
2001-12-16 Stefan Esser <[email protected]>
* main/SAPI.c: MFH : fixed bufferoverflow in sapi_add_header_ex
2001-12-16 Yasuo Ohgaki <[email protected]>
* ext/pgsql/README
ext/pgsql/config.m4: README update
Raise error for bogus installation path for --with-pgsql
Added check for pg_escape_*
2001-12-16 Thomas V.V.Cox <[email protected]>
* pear/PEAR/Common.php:
use the System class for mkDirHier() and mkTempDir()
2001-12-16 Stefan Esser <[email protected]>
* main/SAPI.c:
fixed: bufferoverflow in sapi_add_header_ex triggerable by header("WWW-Authenticate: Basic foobar");
* main/rfc1867.c: fixed: php_ap_getword was unaware of quotes
filenames with ; in it could not get uploaded
fixed: php_ap_getword_conf sometimes returned a static
string that crashs php when freed
(f.e. uploading the file "crash; name= ;"
crashed php)
fixed: magic_quotes was disabled while filling
variables with user supplied input
fixed: memoryleak (some strings did not get freed)
fixed: assuming that adress of "" is always the same
may fail on some compilers
2001-12-16 Derick Rethans <[email protected]>
* ext/standard/tests/math/pow.phpt: Mail should go to php-dev
* ext/standard/math.c: MFH for bug #14??? (pow() thing)
* ext/standard/math.c: - Fix for bug #14544, bogus warning in pow()
2001-12-16 Hartmut Holzgraefe <[email protected]>
* ext/standard/ftok.c
ext/pgsql/pgsql.c: proto fixes
2001-12-16 Thomas V.V.Cox <[email protected]>
* pear/System.php: improved phpdoc of mkTemp()
* pear/System.php:
Added System::mktemp() (Creates temporal files or directories)
2001-12-15 Zeev Suraski <[email protected]>
* ext/mysql/php_mysql.c: Fix bug #13456 - I'm unable to actually test it
2001-12-15 Martin Jansen <[email protected]>
* pear/PEAR.php:
* Destructors seem to work like a charm. -> No need to keep this line.
2001-12-15 Derick Rethans <[email protected]>
* ext/standard/var.c:
- TSRMLS here and there, it's all about the Windows flair
2001-12-15 Martin Jansen <[email protected]>
* pear/README: * Add links to the new documentation.
2001-12-15 Derick Rethans <[email protected]>
* ext/standard/var.c:
- Added a second parameter to var_export which makes the function return
the variable representation in a string.
2001-12-15 Hartmut Holzgraefe <[email protected]>
* ext/ftp/php_ftp.c: proto fix
* ext/gettext/gettext.c: proto fixes
* ext/gmp/gmp.c: proto fix
* ext/ircg/ircg.c: guessed some protos
* ext/ming/ming.c: proto fixes
* ext/ncurses/ncurses.c
ext/ncurses/ncurses_fe.c
ext/ncurses/php_ncurses.h
ext/ncurses/php_ncurses_fe.h: cleanup
* ext/notes/php_notes.c: removed a stray proto comment
* ext/skeleton/create_stubs: improved xml generatioimproved xml generation
* sapi/apache/php_apache.c
ext/cpdf/cpdf.c: proto fix
2001-12-15 Derick Rethans <[email protected]>
* ext/mcrypt/mcrypt.c: - MFH for bug 14162
* ext/mcrypt/TODO: - Added TODO file
* ext/mcrypt/mcrypt.c:
- Fix for bug 14162, invalidate the resource then mcrypt_generic_init fails
2001-12-15 Markus Fischer <[email protected]>
* ext/xslt/sablot.c:
- MFH fix for possible crash in xslt_set_scheme_handlers() with
invalid handler names.
2001-12-15 Derick Rethans <[email protected]>
* ext/xslt/sablot.c: - MFH crash bug fix in xslt_error
2001-12-14 Markus Fischer <[email protected]>
* ext/domxml/php_domxml.c: - Damn Typo.
* ext/domxml/php_domxml.c: - Remove redundant code.
2001-12-14 Martin Jansen <[email protected]>
* pear/HTML/IT.php: * Remove conflict.
2001-12-14 Sebastian Bergmann <[email protected]>
* main/php_version.h
configure.in: Change version to 4.1.1-dev.
2001-12-14 Sterling Hughes <[email protected]>
* pear/HTTP.php: be rfc compliant...
RFC 822 *only* supports four digits for the year in order to have a compliant
header.
RFC 850 supports two digits for the year (y2k_incompliant :) so use that when
y2k_compliance is turned off.
In either case, both of these formats require that GMT be appended to the header,
so we do this as well
2001-12-14 Markus Fischer <[email protected]>
* ext/domxml/php_domxml.c
ext/domxml/php_domxml.h: - MFH bug fixes.
2001-12-14 Vlad Krupin <[email protected]>
* ext/dbase/dbase.c: MFH
2001-12-14 Sterling Hughes <[email protected]>
* NEWS: the datetime.c fixes
* ext/standard/datetime.c: MFH'ed::
use zval macro's (not exactly necessary, but not harmful).
jmoore's fix for timezones.
* NEWS: Derick MFH'ed