forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
15899 lines (11567 loc) · 427 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
2000-03-06 Sascha Schumann <[email protected]>
* ext/mysql/libmysql/mysql_com.h:
Change default UNIX sock to /tmp/mysql.sock
* ext/mysql/libmysql/Makefile.in
ext/mysql/libmysql/libmysql.c
ext/mysql/config.m4: Build fixes - MySQL now actually works
2000-03-06 Stig Bakken <[email protected]>
* Makefile.in
ext/standard/array.c
ext/standard/assert.c
ext/standard/basic_functions.c
ext/standard/basic_functions.h
ext/standard/browscap.c
ext/standard/crypt.c
ext/standard/dir.c
ext/standard/dl.c
ext/standard/dl.h
ext/standard/file.c
ext/standard/file.h
ext/standard/filestat.c
ext/standard/fsock.c
ext/standard/fsock.h
ext/standard/head.c
ext/standard/head.h
ext/standard/lcg.c
ext/standard/mail.c
ext/standard/metaphone.c
ext/standard/output.c
ext/standard/pack.c
ext/standard/pack.h
ext/standard/php_array.h
ext/standard/php_assert.h
ext/standard/php_browscap.h
ext/standard/php_crypt.h
ext/standard/php_dir.h
ext/standard/php_filestat.h
ext/standard/php_lcg.h
ext/standard/php_mail.h
ext/standard/php_metaphone.h
ext/standard/php_output.h
ext/standard/php_standard.h
ext/standard/php_syslog.h
ext/standard/reg.c
ext/standard/reg.h
ext/standard/syslog.c
internal_functions.c.in
php.h: Cleaned up extension namespace, and changed ext/standard into one single
extension.
2000-03-06 Sascha Schumann <[email protected]>
* ext/mysql/libmysql/.cvsignore: update
* ext/mysql/config.m4: Finish config.m4 changes
* ext/mysql/Makefile.in
ext/mysql/config.m4: Build always against embedded library
* ext/mysql/libmysql/.cvsignore
ext/mysql/libmysql/Makefile.am
ext/mysql/libmysql/Makefile.in
ext/mysql/libmysql/acconfig.h
ext/mysql/libmysql/acinclude.m4
ext/mysql/libmysql/config.guess
ext/mysql/libmysql/config.sub
ext/mysql/libmysql/configure.in
ext/mysql/libmysql/install-sh
ext/mysql/libmysql/ltconfig
ext/mysql/libmysql/ltmain.sh
ext/mysql/libmysql/missing
ext/mysql/libmysql/mkinstalldirs
ext/mysql/libmysql/my_config.h
ext/mysql/libmysql/mysql.m4: Modularize mysql autoconf stuff
2000-03-06 David Hedbor <[email protected]>
* sapi/roxen/roxen.c:
Use php_module_shutdown_wrapper as the shutdown function
* sapi/roxen/config.m4: Use
2000-03-06 Stig Bakken <[email protected]>
* sapi/apache/php_apache.c
ext/sysvshm/sysvshm.c
ext/wddx/wddx.c
ext/xml/xml.c
ext/yp/yp.c
ext/standard/basic_functions.c
ext/sybase/sybase.c
ext/sybase_ct/php_sybase_ct.c
ext/sysvsem/sysvsem.c
ext/snmp/snmp.c
ext/pgsql/pgsql.c
ext/posix/posix.c
ext/readline/readline.c
ext/session/session.c
ext/oracle/oracle.c
ext/pcre/php_pcre.c
ext/mysql/php_mysql.c
ext/oci8/oci8.c
ext/odbc/php_odbc.c
ext/odbc/velocis.c
ext/msql/php_msql.c
ext/mssql/php_mssql.c
ext/mcal/php_mcal.c
ext/interbase/interbase.c
ext/ldap/ldap.c
ext/imap/imap.c
ext/ftp/php_ftp.c
ext/hyperwave/hw.c
ext/icap/php_icap.c
ext/domxml/domxml.c
ext/filepro/filepro.c
ext/db/db.c
ext/dba/dba.c
ext/dbase/dbase.c
ext/aspell/aspell.c
ext/com/COM.c
ext/cybercash/cybercash.c
ext/dav/dav.c:
Change extension names in all extensions' zend_module_entry to their
directory name.
2000-03-06 Sascha Schumann <[email protected]>
* cvsclean:
"User interface" for removing all files which are ignored by cvs
(i.e. object files, Makefiles)
2000-03-06 Egon Schmid <[email protected]>
* ext/standard/exec.c:
Hartmut don't touch protos. Only two lines are allowed.
2000-03-06 Hartmut Holzgraefe <[email protected]>
* ext/standard/exec.c:
off-by-one error (bug id #3741) fixed
2000-03-06 Andrei Zmievski <[email protected]>
* ext/session/session.c: Need to pass PLS_DC.
* ext/session/session.c: (php_get_session_var)
The variables are now serialized either from globals or from
$HTTP_STATE_VARS[] array, depending on register_globals and track_vars
settings.
2000-03-06 Sam Ruby <[email protected]>
* sapi/servlet/cookies.php
sapi/servlet/reqheaders.php
sapi/servlet/reqinfo.php
sapi/servlet/reqparams.php
sapi/servlet/servlet.dsw
sapi/servlet/sessions.php: Cleanup
2000-03-06 Uwe Steinmann <[email protected]>
* ext/domxml/domxml.c:
- root property in Dom Doc class is now reference to array element in
children property
2000-03-06 Thies C. Arntzen <[email protected]>
* ext/oci8/oci8.c
ext/oci8/php_oci8.h:
- OCINLogon() sessions are now closed again.
2000-03-06 Sterling Hughes <[email protected]>
* pear/File/Find.php: Fun with tags.
2000-03-05 Sam Ruby <[email protected]>
* win95nt.h: Eliminate "wrong number of parameters" warning
2000-03-05 Andi Gutmans <[email protected]>
* win95nt.h:
- Make some fixes although there is a problem with getpid() being defined
in process.h as getpid(void) and thus having an arugment. We might need to
define a php_getpid() function to wrap getpid().
2000-03-05 Sam Ruby <[email protected]>
* SAPI.c
main.c:
Fix traps due to sapi_global not being initialized when ZTS is set
Don't trap if php.ini can't be read
* sapi/servlet/Makefile.in
sapi/servlet/formatter.java
sapi/servlet/servlet.c
sapi/servlet/servlet.dsp
sapi/servlet/servlet.dsw
sapi/servlet/servlet.java
sapi/servlet/web.xml: Add support for PHP syntax highlighting
Remove debug output
Fix trap when string to be output is not null terminated
Add a MS workspace for project level dependencies
Match case of contentType header
2000-03-05 Hartmut Holzgraefe <[email protected]>
* ext/imap/config.m4:
SuSE 6.3 imap.rpm puts the library into /usr/lib and the include files into /usr/include/imap
2000-03-05 Sascha Schumann <[email protected]>
* win95nt.h:
Avoid the side-effect of defining function names, so that the PHP functions
are not renamed to their prefixed variants.
PR: #3535
2000-03-05 Egon Schmid <[email protected]>
* ext/mcal/php_mcal.c
ext/hyperwave/hw.c: Protos fixed.
2000-03-05 Charles Hagenbuch <[email protected]>
* ext/mcal/php_mcal.c
ext/mcal/php_mcal.h: Attribute list support ported from php3.
2000-03-05 Andrei Zmievski <[email protected]>
* ext/standard/php_metaphone.h: Remove warning.
* NEWS: *** empty log message ***
2000-03-04 Andi Gutmans <[email protected]>
* php.h
php4dllts.dsp
php_compat.h: - Fix Win32 build
2000-03-04 Andrei Zmievski <[email protected]>
* ext/standard/basic_functions.c: Don't need this check.
* ext/standard/basic_functions.c
ext/standard/basic_functions.h:
Added ip2long() and long2ip() courtesy of Faisal Nasim <[email protected]>
* ext/standard/file.c
ext/standard/file.h:
Added ftruncate() and fstat(), courtesy of Faisal Nasim <[email protected]>
2000-03-04 Sascha Schumann <[email protected]>
* ext/xml/expat/xmlparse/hashtable.c
ext/xml/expat/xmlparse/xmlparse.c
ext/xml/expat/xmltok/xmlrole.c
ext/xml/expat/xmltok/xmltok.c
ext/pcre/pcrelib/pcre.h
php.h
php_compat.h: Prefix some symbols with php_
^(pcre|Xml|XML).*
* ext/standard/metaphone.c: Don't export Lookahead
* ext/gd/gd.c: Remove outdated PHP 3.1 stuff
2000-03-04 Zeev Suraski <[email protected]>
* configuration-parser.y
ext/standard/basic_functions.c
ext/standard/basic_functions.h
php4.dsw
php4dll.dsp:
- Added parse_ini_file(). Currently implemented in non thread safe version
of PHP, and currently lacks section support
- Bring the non thread safe .dsp's uptodate
2000-03-03 Charles Hagenbuch <[email protected]>
* ext/imap/imap.c: adding the fix for bug #3685 to php4 as well.
2000-03-03 Stig Bakken <[email protected]>
* TODO: crazy idea brought on by someone at FAST
2000-03-03 Sascha Schumann <[email protected]>
* acinclude.m4
configure.in
reentrancy.c:
Support HP-UX 10.x non-standard time-related reentrant functions
2000-03-03 Jouni Ahto <[email protected]>
* ext/gd/gd.c:
(imagearc) - Fix #3706.
2000-03-03 Uwe Steinmann <[email protected]>
* tests/testhyperwave
ext/domxml/domxml.c
tests/testdom: - tiny changes to testscript and domxml
* ext/hyperwave/hg_comm.c
ext/hyperwave/hw.c: - more changes to use zend_llist
2000-03-03 Sascha Schumann <[email protected]>
* ext/imap/config.m4: make it work
* ext/imap/config.m4: Better lib check
* ext/imap/config.m4:
Also consider $i/include while searching for rfc822.h
2000-03-03 Uwe Steinmann <[email protected]>
* ext/domxml/domxml.c:
- xmltree() now returns an 'Dom Document' object with prop root and
children. root contains just the root element, children is an array
with all nodes on root level, e.g. comment, pi, element
* ext/domxml/domxml.c: - added property type to obejct xml doc
2000-03-03 Zeev Suraski <[email protected]>
* php.ini-dist: Fix spelling
2000-03-03 Joe Martin <[email protected]>
* ext/oci8/oci8.c
ext/oci8/php_oci8.h:
Added functions to retrieve scale, precision and raw oracle data type for
columns.
2000-03-02 David Hedbor <[email protected]>
* sapi/roxen/README: Now recommend --enable-roxen-zts...
2000-03-02 Uwe Steinmann <[email protected]>
* ext/hyperwave/hg_comm.c:
- using zend llist instead of dlist (not tested)
2000-03-02 Sascha Schumann <[email protected]>
* ext/xml/config.m4: adjust comment II
* ext/xml/config.m4: adjust comment
* ext/xml/config.m4: Enable by default
2000-03-02 Uwe Steinmann <[email protected]>
* ext/domxml/domxml.c: - some minor changes, cleanups
* tests/testdom
ext/domxml/domxml.c:
- dom class now distinguishes between $dom->root() and $dom->children()
$dom->root() returns just the element, $dom->children() all nodes e.g.
comments
* ext/domxml/php_domxml.h
tests/testdom
ext/domxml/domxml.c:
- The root node of a xml doc is now an array since it is possible
to have a comment or pi and an element on root level.
2000-03-02 Stig Bakken <[email protected]>
* sapi/apache/mod_php4.c: "none" is now equivalent with "" in Apache config directives.
2000-03-02 Sam Ruby <[email protected]>
* ext/mysql/libmysql/config-win32.h: Eliminate 62 warnings
2000-03-02 Evan Klinger <[email protected]>
* ext/cybercash/config.m4: Add appropriate check for mckcrypto lib
2000-03-01 Uwe Steinmann <[email protected]>
* ext/domxml/domxml.c
tests/testdom: - started to implement overload class for xml node
2000-03-01 David Hedbor <[email protected]>
* sapi/roxen/roxen.c:
Removal of printf-debug, changed sp/fp to Pike_sp / Pike_fp instead of
using a define.
2000-03-01 Egon Schmid <[email protected]>
* ext/standard/math.c: Only two lines are allowed here.
2000-03-01 Hartmut Holzgraefe <[email protected]>
* ext/standard/math.c: round(-0.1) will now return 0 instead of -0
2000-03-01 Thies C. Arntzen <[email protected]>
* NEWS: .
* ext/oci8/oci8.c: - OCINLogon no longer crashes.
2000-03-01 Evan Klinger <[email protected]>
* ext/cybercash/cyberlib.php:
get rid of warning when $url["port"] isn't set
2000-03-01 Charles Hagenbuch <[email protected]>
* ext/imap/imap.c: Fix compile warnings.
* ext/imap/imap.c:
Add _php_imap_parse_address(), which replaces a lot of duplicated,
hard-to-follow code in imap_headerinfo(). This code also happened to be
broken, causing the $h->to, $h->from, etc arrays to contain only the first
address, not every address. This is fixed now.
* ext/mcal/php_mcal.c: Show the minor MCAL version if we have it.
2000-02-29 Charles Hagenbuch <[email protected]>
* ext/imap/imap.c:
Fix Bug #3632 - sanity check to not access a message that doesn't exist.
2000-02-29 Jouni Ahto <[email protected]>
* ext/gd/gd.c:
(image(createfrom?)png) Fix a typo & remove unused variable.
2000-02-29 Sascha Schumann <[email protected]>
* ext/imap/config.m4:
Automatically try to symlink c-client.a to libc-client.a, so people
can avoid changing things.
* ext/imap/config.m4:
Rewrite IMAP checks. This should solve the problems people had with
shared imap libs
* acinclude.m4
configure.in:
AD_ADD_LIBRARY_DEFER allows people to add libraries in a deferred way
(needed for imap and recode)
2000-02-29 Sterling Hughes <[email protected]>
* pear/File/Find.php: Added common usages and trailing ?>
* pear/File/Find.php:
A class that will search/map directory trees, see the descriptions in
the comments and at the very bottom.
2000-02-29 Andrei Zmievski <[email protected]>
* ext/standard/html.h
ext/standard/html.c:
Made php_escape_html_entities() as a separate function for export.
2000-02-29 David Hedbor <[email protected]>
* sapi/roxen/roxen.c:
Fixed a compilation problem with roxen.c due to a change in Pike to fix a
conflict with embedded Perl.
* sapi/roxen/roxen.c: roxen.c
* sapi/roxen/config.m4: Removed warning about ZTS since it works fine now.
2000-02-28 Charles Hagenbuch <[email protected]>
* ext/imap/imap.c:
fixing segfaults in imap_getmailboxes and imap_getsubscribed.
2000-02-28 Andrei Zmievski <[email protected]>
* ext/wddx/php_wddx_api.h
ext/wddx/wddx.c: WDDX header comments now conform to the latest DTD.
2000-02-28 Sam Ruby <[email protected]>
* ext/java/jver.php
ext/java/reflect.java
sapi/servlet/README
sapi/servlet/cookies.php
sapi/servlet/date.php
sapi/servlet/jinfo.php
sapi/servlet/jver.php
sapi/servlet/reqheaders.php
sapi/servlet/reqinfo.php
sapi/servlet/reqparams.php
sapi/servlet/sessions.php:
Improved handing of instances of private classes. Added servlet examples.
2000-02-28 Jouni Ahto <[email protected]>
* ext/gd/gd.c
ext/gd/php_gd.h:
- Use *_ex-API and *_RESOURCE-macros (partial).
2000-02-28 Andrei Zmievski <[email protected]>
* ext/session/session.c: (php_set_session_var)
$foo and $HTTP_SESSION_VARS["foo"] are no longer references to the same
value.
2000-02-28 Sascha Schumann <[email protected]>
* TODO: .
2000-02-28 Andrei Zmievski <[email protected]>
* TODO: WDDX additions.
2000-02-28 Zeev Suraski <[email protected]>
* php_variables.c:
- Switched back to the old $HTTP_*_VARS[] behavior - $HTTP_GET_VARS["foo"]
and $foo are no longer references to each other, but separate variables
like they were prior to PHP 4.0 Beta 4
2000-02-28 Charles Hagenbuch <[email protected]>
* ext/mcal/php_mcal.c:
fixing number of arguments to be consistent with php3 code.
* ext/mcal/php_mcal.c:
mcal_next_recurrence() actually works again now (in addition to not
crashing).
Also, cleaned up the formatting.
2000-02-27 Andi Gutmans <[email protected]>
* ext/standard/browscap.c: - Hopefully fix browscap problem
* genif.pl: - Bye bye Perl.
2000-02-27 Thies C. Arntzen <[email protected]>
* TODO: .
2000-02-27 Sascha Schumann <[email protected]>
* TODO: .
2000-02-27 Thies C. Arntzen <[email protected]>
* MODULES_STATUS
TODO: *** empty log message ***
* ext/oci8/oci8.c: out of space in private (brain) memory;-)
2000-02-27 Zeev Suraski <[email protected]>
* NEWS: *** empty log message ***
* ext/sybase/sybase.c: Compile fix
2000-02-27 Stig Bakken <[email protected]>
* pear/DB.php
pear/DB/common.php
pear/DB/mysql.php
pear/DB/odbc.php
pear/DB/pgsql.php
pear/DB/storage.php
pear/HTTP.php: Avoid E_NOTICE errors in PEAR code.
2000-02-27 Thies C. Arntzen <[email protected]>
* ext/oci8/oci8.c: just so that i don't forget
2000-02-27 Andi Gutmans <[email protected]>
* fopen-wrappers.c: - Fix bug 3640
2000-02-27 Charles Hagenbuch <[email protected]>
* ext/mcal/php_mcal.c:
Some formatting, and fix the crashes in mcal_next_recurrence (finally!)
2000-02-26 Zeev Suraski <[email protected]>
* main.c
php_globals.h:
- Fixed a (fairly common) situation where error_reporting values would not be
properly restored after a call to error_reporting(), in between requests
* configuration-parser.y
main.c: Verified $HTTP_*[] protection
* ext/sybase/sybase.c: Fix Sybase DB compilation
2000-02-26 Andrei Zmievski <[email protected]>
* main.c: (php_hash_environment)
Fixed a bunch of memory leaks from the recent HTTP_*_VARS[] protection
patch.
2000-02-26 Zeev Suraski <[email protected]>
* main.c
php_globals.h
rfc1867.c: - Protect $HTTP_POST_FILES[] as well
2000-02-26 Andrei Zmievski <[email protected]>
* NEWS
php_version.h: Added notice about new functions.
2000-02-26 Zeev Suraski <[email protected]>
* main.c
php_globals.h
php_variables.c: This patch is untested! I'll only have time to test it thoroughly in a couple of hours...
2000-02-26 Andrei Zmievski <[email protected]>
* TODO: Add a couple of entries.
2000-02-26 Zeev Suraski <[email protected]>
* sapi/apache/mod_php4.c: Compile fix
2000-02-26 Stig Bakken <[email protected]>
* pear/HTTP.php: register package
2000-02-26 Zeev Suraski <[email protected]>
* configuration-parser.y
ext/standard/basic_functions.c
main.c
php_ini.c
php_ini.h
sapi/cgi/cgi_main.c
win32/registry.c: Allow the INI callbacks to know at what stage PHP is
* ext/standard/basic_functions.c
ext/standard/basic_functions.h:
- Added ini_set() as an alias to ini_alter()
* SAPI.c
configuration-scanner.l
main.c
php.ini-dist:
- The string None is now recognized as a keyword by the php.ini processor, and
can be used to denote an empty string
- Added None keyword support to the INI parser
- Removed specialized "none" code
2000-02-26 Thies C. Arntzen <[email protected]>
* SAPI.c: (sapi_send_headers) fix leak
2000-02-26 Uwe Steinmann <[email protected]>
* NEWS
ext/pdf/pdf.c
ext/pdf/php_pdf.h: - More function in php module
2000-02-26 Thies C. Arntzen <[email protected]>
* NEWS: correct
2000-02-26 Charles Hagenbuch <[email protected]>
* ext/imap/imap.c:
fixing imap_undelete to accept 2 or 3 arguments, not 3 or 4.
2000-02-26 Zeev Suraski <[email protected]>
* SAPI.c
SAPI.h
sapi/apache/mod_php4.c
sapi/isapi/php4isapi.c: - From CODING_STANDARDS:
[6] NEVER USE strncat(). If you're absolutely sure you know what you're doing,
check its man page again, and only then, consider using it, and even then,
try avoiding it.
strncat() is your enemy!
- Fix several SAPI services, get rid of the default_content_type (it's always
composed of the mime type and charset now).
- Win32 works again
* NEWS: *** empty log message ***
2000-02-26 Stig Bakken <[email protected]>
* pear/HTTP.php:
Added simple HTTP utility class, currently with Date() and
negotiateLanguage().
2000-02-26 Zeev Suraski <[email protected]>
* ext/sybase_ct/php_sybase_ct.h
ext/sysvshm/sysvshm.c
ext/session/session.c
ext/standard/config.m4
ext/standard/crypt.c
ext/standard/head.h
ext/standard/info.c
ext/standard/md5.c
ext/standard/md5.h
ext/standard/microtime.c
ext/posix/posix.c
ext/msql/php_msql.c
ext/mysql/php_mysql.c
ext/interbase/php_interbase.h
ext/ldap/ldap.c
ext/gd/gd.c
ext/gd/gdttf.h
ext/informix/config.m4
ext/informix/php_informix.h
ext/db/db.c
ext/domxml/php_domxml.h
ext/cpdf/php_cpdf.h
ext/cybercash/cyberlib.php
ext/dav/dav.c
acconfig.h.in
config.w32.h
configure.in
fopen-wrappers.c: - Convert 'PHP3' to 'PHP'
- Avoid declaring crypt() related salt types twice
2000-02-26 Charles Hagenbuch <[email protected]>
* ext/mcal/php_mcal.c
ext/mcal/php_mcal.h:
- Removing the code that checks for Zend, since this is distinctly
php4-specific now.
- bringing it up to date with the mcal functions in php3
- cleanups
Unfortunately, it still segfaults. I'll file a bug report about that...
2000-02-25 Sam Ruby <[email protected]>
* php4dllts.dsp: Need to include php_ticks.c in the windows build
* main.c: Win32 build error:
warning C4020: 'sapi_activate' : too many actual parameters
* SAPI.c: Build failure on Win32:
error C2198: 'sapi_apply_default_charset' : too few actual parameters
2000-02-25 Stig Bakken <[email protected]>
* .cvsignore: let's not ignore Zend/TSRM
* build/rules.mk
build/rules_pear.mk
ext/standard/array.c
sapi/apache/mod_php4.c
.cvsignore
Makefile.in
SAPI.c
SAPI.h
configure.in
main.c
php.ini-dist
php_globals.h
php_ticks.c
php_ticks.h
php_version.h: Implemented default_charset and default_mimetype configuration directives.
Started implementing ticks in PHP.
* pear/DB.php: add a note about include return values
2000-02-25 Zeev Suraski <[email protected]>
* ext/standard/datetime.c: Make 4-diogit date RFC 2068 compliant
2000-02-25 Egon Schmid <[email protected]>
* ext/standard/metaphone.c: Breaks funclist.txt
2000-02-25 Thies C. Arntzen <[email protected]>
* SAPI.c: fix obvious crash.
stig, in sgi-mode i still "only" get:
(haven't touched my .ini file in ages - and don't plan to)
X-Powered-By: PHP/4.0b5-dev
Content-type: iso-8859-1 <<< where is text/html?
2000-02-25 Egon Schmid <[email protected]>
* ext/domxml/domxml.c: More protos.
2000-02-25 Jouni Ahto <[email protected]>
* ext/gd/Makefile.in
ext/gd/config.m4
ext/gd/gd.c
ext/gd/gdt1.c
ext/gd/gdt1.h
ext/gd/php_gd.h:
Ported T1lib support from PHP3.
2000-02-24 Stig Bakken <[email protected]>
* SAPI.c
SAPI.h
main.c
php_globals.h
php_ini.c
php_version.h
sapi/apache/mod_php4.c:
started implementing directives for default mimetype/charset
2000-02-24 Zeev Suraski <[email protected]>
* ext/mysql/libmysql/libmysql.dsp: Update .dsp
2000-02-24 Egon Schmid <[email protected]>
* ext/readline/readline.c: Thies I will give up until tomorrow.
* ext/mcal/php_mcal.c
ext/icap/php_icap.c
ext/dba/dba.c: More protos.
* ext/wddx/wddx.c: Is it ok, Andrei.
2000-02-24 Zeev Suraski <[email protected]>
* ext/mysql/mysql.dsp
php4ts.dsp
sapi/isapi/php4isapi.dsp: - Fix Win32 build in Release_TS* modes
2000-02-24 Egon Schmid <[email protected]>
* ext/wddx/wddx.c
ext/aspell/aspell.c: More protos.
2000-02-24 Andrei Zmievski <[email protected]>
* main.c
php.ini-dist: Revert the y2k ini patches.
* main.c: Turn on y2k_compliance by default.
2000-02-24 Kristian Köhntopp <[email protected]>
* php.ini-dist:
Set y2k_compliance to "On" by default, as we do have y2k now.
2000-02-24 Egon Schmid <[email protected]>
* ext/session/session.c: More protos.
* ext/standard/array.c: There are more '|' and should be mixed.
* ext/zlib/zlib.c
ext/yp/yp.c: More protos.
2000-02-24 Andrei Zmievski <[email protected]>
* TODO
ext/pcre/php_pcre.c: Fix bug #3599.
2000-02-24 Egon Schmid <[email protected]>
* ext/xml/xml.c
ext/sysvsem/sysvsem.c
ext/sysvshm/sysvshm.c
ext/standard/assert.c: More protos.
2000-02-24 Andrei Zmievski <[email protected]>
* ext/standard/array.c: Fix proto.
2000-02-24 Sascha Schumann <[email protected]>
* sapi/apache/config.m4: - Fixed -DEAPI inheritance from APXS.
* sapi/apache/config.m4: Improve APXS_CFLAGS checks
2000-02-24 Thies C. Arntzen <[email protected]>
* configuration-parser.y: (pvalue_config_destructor) gets a zval* not a zval**
2000-02-24 Sascha Schumann <[email protected]>
* sapi/apache/config.m4: Define EAPI, if Apache uses EAPI
* sapi/apache/config.m4:
Remove XML_INCLUDE, we use the embedded expat always
* ext/cybercash/cybercash.c:
Revert last commit (cybercash has its own version of base64.h)
2000-02-24 Egon Schmid <[email protected]>
* ext/standard/pack.c
ext/standard/reg.c
ext/standard/string.c: Will watch the diffs as much as I can.
2000-02-24 Thies C. Arntzen <[email protected]>
* ext/standard/dir.c: zorro does a Z - egon does an e?
2000-02-24 Egon Schmid <[email protected]>
* ext/standard/array.c
ext/standard/iptc.c
ext/standard/math.c
ext/standard/microtime.c
ext/standard/exec.c
ext/standard/file.c
ext/standard/info.c
ext/standard/lcg.c
ext/standard/dir.c: More protos.
* ext/standard/basic_functions.c: Most functions don't have protos.
* ext/snmp/snmp.c
ext/pgsql/pgsql.c: More protos.
2000-02-24 Sascha Schumann <[email protected]>
* build/ltlib.mk: WTF?
2000-02-23 Zeev Suraski <[email protected]>
* ext/standard/basic_functions.c
NEWS: Fix name
2000-02-23 David Hedbor <[email protected]>
* sapi/roxen/phpmod.pike:
The Roxen PHP4 module is now a part of the Roxen CVS which makes more sense.
2000-02-23 Zeev Suraski <[email protected]>
* ext/standard/basic_functions.c: Remove obsolete code
2000-02-23 Stig Bakken <[email protected]>
* ext/standard/basic_functions.c
ext/standard/microtime.c:
(PHP getrusage) don't define this function at all if the getrusage() function
is not available on the system.
2000-02-23 Danny Heijl <[email protected]>
* ext/informix/ifx.dsp
ext/informix/ifx.dsw
ext/informix/ifx.ec: - Win32 compile fixes
2000-02-23 Andi Gutmans <[email protected]>
* ext/mysql/libmysql/libmysql.dsp
ext/mysql/libmysql/my_wincond.c
config.w32.h
internal_functions_win32.c
php4dllts.dsp
php4ts.dsw: - MySQL now compiles right into the PHP 4 binary on Windows
2000-02-23 Sascha Schumann <[email protected]>
* ltmain.sh: Kill another warning
* ltmain.sh: Remove warning message
* NEWS: .
2000-02-23 Stig Bakken <[email protected]>
* build/build2.mk: shut up cross compiling warnings
2000-02-23 Sascha Schumann <[email protected]>
* ext/odbc/php_odbc.h: Define SQL_SUCCEEDED for Solid.
PR: #3383
2000-02-23 Thies C. Arntzen <[email protected]>
* NEWS
configure.in
php_version.h: bump version number
2000-02-23 Sascha Schumann <[email protected]>
* ext/standard/microtime.c:
Include <sys/types.h> and <sys/time.h> before <sys/resource.h>
2000-02-23 Egon Schmid <[email protected]>