forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
23768 lines (17046 loc) · 646 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-07-03 Zeev Suraski <[email protected]>
* ext/sybase/php_sybase_db.c: Fix logic (thanks to Dean Bennett)
2000-07-03 Danny Heijl <[email protected]>
* ext/informix/ifx.dsp
ext/informix/ifx_custom_build.dsp:
- Informix driver : Changes for new "main" directory (win32 build)
2000-07-03 Sam Ruby <[email protected]>
* ext/java/README: Fix typo. Thanks to Adam Trachtenberg for noticing it!
2000-07-03 Thies C. Arntzen <[email protected]>
* ext/oci8/oci8.c: - Fixed crash on OCI?Logon() failure. (thies)
2000-07-03 Sam Ruby <[email protected]>
* ext/java/README:
Add suggestions for dealing with difficult installations, based on feedback
from multiple people. The .bashrc suggestion was from Rael Dornfest.
2000-07-03 Sascha Schumann <[email protected]>
* ext/sockets/php_sockets.h:
Identifiers which begin with an underscore are reserved. Changed
_PHP_SOCKETS_H to PHP_SOCKETS_H.
2000-07-03 Rasmus Lerdorf <[email protected]>
* ext/sockets/config.m4: Use AC_CHECK_HEADERS(unistd.h) instead
2000-07-03 Chris Vandomelen <[email protected]>
* ext/sockets/.cvsignore: * ext/sockets/.cvsignore
- Forgot to import into repository.
* ext/sockets/Makefile.in
ext/sockets/config.m4
ext/sockets/php_sockets.h
ext/sockets/sockets.c
ext/sockets/sockets.php: * Makefile.in
config.m4
php_sockets.h
sockets.c
sockets.php:
- Added files needed for Unix-style sockets support in PHP.
2000-07-03 Sascha Schumann <[email protected]>
* win32/syslog.h
main/fopen-wrappers.h
main/php3_compat.h
main/php_main.h:
Rename macros which begin with underscore to valid macros.
* ext/standard/md5.h
ext/standard/pageinfo.h
ext/standard/php_filestat.h
ext/standard/php_image.h
ext/standard/php_iptc.h
ext/standard/php_mail.h
ext/standard/php_math.h
ext/standard/php_metaphone.h
ext/standard/php_output.h
ext/standard/php_string.h
ext/standard/php_var.h
ext/standard/scanf.h
ext/sybase/php_sybase_db.h
ext/wddx/php_wddx.h
ext/interbase/php_interbase.h
ext/mcal/php_mcal.h
ext/skeleton/php_skeleton.h
ext/standard/base64.h
ext/icap/php_icap.h
ext/imap/php_imap.h
ext/informix/php_informix.h
ext/dbase/php_dbase.h
ext/filepro/php_filepro.h
ext/gettext/php_gettext.h
ext/hyperwave/php_hyperwave.h
ext/aspell/php_aspell.h
ext/calendar/php_calendar.h
ext/dba/php_dba.h:
Rename macros which begin with underscore to appropiate macros. The general
rule is:
macro_name=`echo $filename|tr a-z A-Z|sed 's/\./_/'`
2000-07-02 Sascha Schumann <[email protected]>
* win32/php_registry.h
win32/pwd.h
win32/readdir.h
win32/time.h
ext/zlib/php_zlib.h
main/SAPI.h
main/internal_functions_registry.h
main/php.h
main/php_content_types.h
main/php_globals.h
main/php_ini.h
main/php_realpath.h
main/php_regex.h
main/php_ticks.h
main/php_variables.h
main/rfc1867.h
main/safe_mode.h
main/snprintf.h
sapi/apache/mod_php4.h
ext/sysvshm/php_sysvshm.h
ext/xml/php_xml.h
ext/yp/php_yp.h
ext/swf/php_swf.h
ext/sybase_ct/php_sybase_ct.h
ext/sysvsem/php_sysvsem.h
ext/snmp/php_snmp.h
ext/standard/basic_functions.h
ext/standard/cyr_convert.h
ext/standard/datetime.h
ext/standard/dl.h
ext/standard/dns.h
ext/standard/exec.h
ext/standard/file.h
ext/standard/flock_compat.h
ext/standard/fsock.h
ext/standard/head.h
ext/standard/html.h
ext/standard/info.h
ext/standard/microtime.h
ext/standard/pack.h
ext/standard/php_array.h
ext/standard/php_assert.h
ext/standard/php_browscap.h
ext/standard/php_dir.h
ext/standard/php_ext_syslog.h
ext/standard/php_link.h
ext/standard/php_rand.h
ext/standard/quot_print.h
ext/standard/reg.h
ext/standard/type.h
ext/standard/uniqid.h
ext/standard/url.h
ext/readline/php_readline.h
ext/recode/php_recode.h
ext/pcre/pcrelib/pcre.h
ext/pcre/pcrelib/pcreposix.h
ext/pdf/php_pdf.h
ext/pgsql/php_pgsql.h
ext/posix/php_posix.h
ext/odbc/php_odbc.h
ext/odbc/php_velocis.h
ext/oracle/php_oracle.h
ext/pcre/php_pcre.h
ext/mysql/php_mysql.h
ext/oci8/php_oci8.h
ext/ldap/php_ldap.h
ext/msql/php_msql.h
ext/mssql/php_mssql.h
ext/ftp/ftp.h
ext/gd/php_gd.h
ext/hyperwave/debug.h
ext/hyperwave/hg_comm.h
ext/hyperwave/hw_error.h
ext/dba/php_cdb.h
ext/dba/php_db2.h
ext/dba/php_db3.h
ext/dba/php_dbm.h
ext/dba/php_gdbm.h
ext/dba/php_ndbm.h
ext/dbase/dbf.h
ext/dbase/dbf_ndx.h
ext/domxml/php_domxml.h
ext/fdf/php_fdf.h
ext/cybercash/cybercash.h
ext/dav/php_dav.h
ext/db/php_db.h
ext/bcmath/php_bcmath.h
ext/calendar/sdncal.h
ext/com/php_COM.h
ext/cpdf/php_cpdf.h:
Change header protection macros to conform to standard.
Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment"
All identifiers that begin with an underscore and either an uppercase
letter or another underscore are always reserved for any use by the
implementation.
2000-07-02 Charles Hagenbuch <[email protected]>
* pear/DB.php:
i don't think there's a reason to nuke the db handle here (when freeing
results).
2000-07-02 Shane Caraveo <[email protected]>
* win32/php4dllts.dsp: fix php4dllts dsp file
* sapi/apache/php4apache.dsp: fix apache dsp file
* sapi/nsapi/php4nsapi.dsp: fix nsapi dsp file
2000-07-02 Stanislav Malyshev <[email protected]>
* main/main.c: react only on CORE_ERROR
* ext/session/session.c: Fix couple of crashes on error conditions
Make session_module_name really work
* main/main.c: Be strict on errors in modules startup
2000-07-02 Andi Gutmans <[email protected]>
* ext/odbc/php_odbc.c
ext/standard/basic_functions.c
ext/standard/file.c
ext/standard/file.h
ext/standard/link.c
ext/standard/php_link.h: - Make PHP compile again under Windows.
- Please be careful when you make such changes.
2000-07-02 Kristian Köhntopp <[email protected]>
* ext/standard/basic_functions.c:
unlink() is not a function related to HAVE_SYMLINK. It is being
used to delete files (actually, in Unix, names of files, as in
Unix nobody has deleted a file, ever).
2000-07-02 Rui Hirokawa <[email protected]>
* ext/pgsql/config.m4
ext/pgsql/pgsql.c
ext/pgsql/php_pgsql.h:
added new functions: pg_setclientencoding, pg_clientencoding in Postgres-7.0.
2000-07-01 Sterling Hughes <[email protected]>
* ext/snmp/snmp.c: revert + note.
* ext/snmp/snmp.c: - strdup -> estrdup
- check whether return_value array is initialized.
2000-07-01 Rasmus Lerdorf <[email protected]>
* main/SAPI.c:
This is documented to not be case sensitive and it is not case sensitive
in PHP 3, so let's not make it case sensitive.
2000-07-01 Andi Gutmans <[email protected]>
* ext/standard/image.c:
- Commit tiny patch to remove redundant code by Amit Schreiber.
2000-07-01 Sterling Hughes <[email protected]>
* ext/cybercash/cybercash.c: stylistic modifications.
* ext/cybercash/cybercash.h: definition.
* ext/cybercash/cybercash.c:
-Allow cybercash to compile as a DL module.
-Stylistic changes.
-Add RETURN_STRINGL + Z_*_PP macros
2000-06-30 Sterling Hughes <[email protected]>
* ext/dbase/dbase.c: Fix bug 4813. Fixed by [email protected]
* ext/dbase/dbase.c: Fixed the dbase_create function.
2000-06-30 Andrei Zmievski <[email protected]>
* ext/pcre/php_pcre.c: Typo.
2000-06-30 Charles Hagenbuch <[email protected]>
* pear/DB/oci8.php:
OCI8 implementation for PEAR. From James L. Pine <[email protected]>. There
are apparently problems with ocierror(), but it mostly works.
2000-06-30 Dan Kalowsky <[email protected]>
* ext/odbc/config.m4
ext/odbc/php_odbc.c
ext/odbc/php_odbc.h:
updates for the SolidEE to work for 3.5 with PHP4.0.1. Still causes warning of "integer from pointer used without typecast" but does not seem to effect the final build any. have not found a correction yet. has not shown the SQLParamData bug either, but unknown if it is closed as i was unable to reproduce it.
basically fixed the config.m4 file, and added a #define of HAVE_SOLID_35, due to the solidee 3.5 vs all other solidee systems being drastically different. and solidtech providing no means for testing what version you are using.
does not include fixes for the linux users of glibc2 (automatically assumes libc5). temporary work around, link your /usr/local/solid/lib files from a scll2x23 or scll2x30 to a scllux30 or scllux23 name... suggestions to automate this are welcome.
2000-06-30 Charles Hagenbuch <[email protected]>
* pear/DB.php:
DB::parseDSN() now checks the value it is passed, and if it is already an
array, returns it. This lets you pass arrays to the connect functions and
they'll work transparently.
2000-06-30 Rasmus Lerdorf <[email protected]>
* sapi/apache/mod_php4.c:
Some user-agents send 'basic' instead of 'Basic' in their Authorization
header. ApacheBench is an example. PHP's HTTP Auth would not work with
these.
Some user-agents send 'basic' instead of 'Basic' in their Authorization
header. ApacheBench is an example. PHP's HTTP Auth would not work with
these. (Rasmus)
2000-06-30 Zeev Suraski <[email protected]>
* ext/sybase/php_sybase_db.h
ext/sybase/sybase.c
ext/sybase/Makefile.in
ext/sybase/php_sybase.h
ext/sybase/php_sybase_db.c: First Sybase-DB fix patch
2000-06-30 Sam Ruby <[email protected]>
* sapi/servlet/servlet.dsp: remove unnecessary dependency
2000-06-30 Zeev Suraski <[email protected]>
* win32/time.h
NEWS
main/configuration-parser.y
main/main.c: - Revert bogus time.h commit
- Fixed a problem under some versions of Windows that could cause PHP to hang
on startup if errors occured, e.g. in the php.ini file
2000-06-30 Thies C. Arntzen <[email protected]>
* main/php_version.h: hmm, this file is not really auto-generated.
2000-06-30 Zeev Suraski <[email protected]>
* sapi/servlet/servlet.dsp
win32/php4dllts.dsp
win32/php4ts.dsp
win32/time.h
main/configuration-parser.y
main/main.c
sapi/apache/php4apache.dsp
sapi/isapi/php4isapi.dsp
sapi/nsapi/php4nsapi.dsp: Set version number on DLLs
* win32/php4ts.dsw:
PHP modules should only be in the php_modules.dsw workspace...
2000-06-30 Uwe Steinmann <[email protected]>
* ext/hyperwave/hw.c
ext/hyperwave/php_hyperwave.h: - using more of the zend API
2000-06-30 Sam Ruby <[email protected]>
* ext/java/java.c
ext/java/reflect.java:
Fix garbage in warning strings, and IllegalArgumentException on
assignments which require data type conversions.
2000-06-30 Sascha Schumann <[email protected]>
* TODO: .
2000-06-29 Zeev Suraski <[email protected]>
* ext/standard/php_dir.h
NEWS
ext/standard/basic_functions.c
ext/standard/dir.c: Fixed opendir() thoroughly
2000-06-29 Thies C. Arntzen <[email protected]>
* configure.in: welcome 4.0.2-dev
2000-06-29 Andi Gutmans <[email protected]>
* ext/pgsql/pgsql.dsp: - Get rid of absolute path
* ext/pgsql/pgsql.dsp: - Make pgsql compile on Windows.
2000-06-29 Stanislav Malyshev <[email protected]>
* ext/wddx/wddx.c: Lowercase class name before checking for it
* ext/standard/var.c: Lowercase class name before looking for it
2000-06-29 Kristian Köhntopp <[email protected]>
* ext/standard/basic_functions.c
ext/standard/mail.c
ext/standard/php_mail.h: ezmlm_hash() function also available for php4.
2000-06-29 Andi Gutmans <[email protected]>
* sapi/cgi/cgi_main.c: - Extra newline crept in somehow
2000-06-29 Stanislav Malyshev <[email protected]>
* ext/standard/file.c:
Make fgets not use maximal buffer length always, but shrink buffer
if it's too big.
2000-06-29 Andi Gutmans <[email protected]>
* sapi/cgi/cgi_main.c
main/config.w32.h:
- Fix problem with DICARD_PATH being defined in windows
2000-06-29 Andrei Zmievski <[email protected]>
* NEWS: Starting 4.0.2 changes.
2000-06-29 Stanislav Malyshev <[email protected]>
* ext/session/session.c:
Try to fix #5271 - crash when $HTTP_SESSION_VARS is already defined
via "global"
2000-06-29 Charles Hagenbuch <[email protected]>
* pear/DB/mysql.php:
check the return value of mysql_select_db() ("James L. Pine"
2000-06-28 Andrei Zmievski <[email protected]>
* TODO: Would be a useful thing to have.
* ext/standard/array.c: Oops, didn't mean to commit that.
* ext/standard/array.c
ext/pcre/php_pcre.c
ext/pcre/php_pcre.h:
- Added an optional parameter to preg_replace() that can be used to
specify how many replacements to make.
2000-06-28 Zeev Suraski <[email protected]>
* sapi/apache/mod_php4.c:
I'm not sure whether this is necessary or not. Is it guarenteed that get_module_conf()
will always return a value? Even if there were no relevant directives at all?
2000-06-28 Andi Gutmans <[email protected]>
* main/php_virtual_cwd.c:
- Fix problem with VIRTUAL_DIR and relative paths containing ..
2000-06-28 Joey Smith <[email protected]>
* ext/pdf/pdf.c: Added note about creating PDF documents in memory.
This is not quite complete, due to a bug in pdflib 3.0.
2000-06-27 Sascha Schumann <[email protected]>
* ext/session/session.c: Cosmetic name change
2000-06-27 Jouni Ahto <[email protected]>
* NEWS
ext/dba/dba.c
ext/dba/dba_db2.c
ext/dba/dba_db3.c
ext/dba/php_dba.h:
2000-06-27 Zeev Suraski <[email protected]>
* win32/README.txt: - Limit lines to 80 chars
- Let people know they don't have to use the ISAPI filter if they don't need
HTTP authenatication
2000-06-27 Jouni Ahto <[email protected]>
* ext/dba/dba_db3.c
ext/dba/php_dba.h
NEWS
ext/dba/dba.c
ext/dba/dba_db2.c:
- dba_[p]open accepts now a new parameter, which kind of database to create
(DBA_BTREE or DBA_HASH), if the handler is either 'db2' or 'db3' and
mode 'c' or 'n'. It is ignored if mode is 'c' and the db already exists.
2000-06-27 Zeev Suraski <[email protected]>
* NEWS
ext/standard/dir.c:
Fixed a bug in opendir(), which prevented readdir() from working properly if
the $dir argument wasn't explicitly specified
* win32/sendmail.c:
Revert the sendmail.c patch - it uses 4 different variables that aren't defined, and breaks
the Win32 build
2000-06-27 Andi Gutmans <[email protected]>
* main/php_virtual_cwd.c: - Fix bug with VIRTUAL_DIR, .., and symlinks.
2000-06-27 Sascha Schumann <[email protected]>
* genif.sh:
Use [\]n to refer to the two characters '\' and 'n'. This is the correct way
according to SUS II.
PR: #5212
2000-06-27 Hartmut Holzgraefe <[email protected]>
* win32/sendmail.c: should now get multiple To: and Cc: recievers right
(code taken from php3 version)
2000-06-27 Jouni Ahto <[email protected]>
* ext/pgsql/pgsql.c:
(pg_loreadall) Was using zval ** but forgot to convert to use
zend_get_parameters_ex(). Fixes #5244.
2000-06-27 Sam Ruby <[email protected]>
* win32/php4ts.dsw: add Java as a valid package
* sapi/servlet/servlet.java: defer loading of the native code
2000-06-27 Thies C. Arntzen <[email protected]>
* ext/standard/file.c: (fgetcsv) fixed leak
* ext/ldap/ldap.c:
- Fixed a possible crash in the LDAP modify code. (Eric Kilfoil)
2000-06-27 Andi Gutmans <[email protected]>
* NEWS: - Made discard-path work again
2000-06-26 Zeev Suraski <[email protected]>
* NEWS
ext/standard/file.c:
Removed 8KB limit on line length of the file() function
* NEWS
ext/standard/dl.c:
- Disabled dl() when PHP is being used as a module inside a multithreaded web
server - it didn't work before, and caused weird results (Zeev)
2000-06-26 Andi Gutmans <[email protected]>
* ext/zlib/zlib.c:
- Don't depend on USE_PATH being equal to 1. Use #define value
2000-06-26 Zeev Suraski <[email protected]>
* php.ini-dist
php.ini-optimized: Add missing enable_dl
* main/configuration-parser.y
main/configuration-scanner.l:
Support boolean NOT in the php.ini processor
2000-06-26 Andrei Zmievski <[email protected]>
* sapi/servlet/servlet.c
sapi/thttpd/thttpd.c
sapi/roxen/roxen.c
sapi/pi3web/pi3web_sapi.c
sapi/nsapi/nsapi.c
sapi/phttpd/phttpd.c
sapi/cgi/cgi_main.c
sapi/isapi/php4isapi.c
sapi/apache/mod_php4.c
ext/standard/info.c
main/SAPI.h
sapi/aolserver/aolserver.c:
Separate plain name returned by php_sapi_module() and pretty name
used for output.
2000-06-26 Egon Schmid <[email protected]>
* ext/standard/file.c: Fixed some protos.
2000-06-26 Andi Gutmans <[email protected]>
* sapi/cgi/cgi_main.c: - Pray this is an OK fix for the DISCARD_PATH junk
2000-06-26 Zeev Suraski <[email protected]>
* ext/zlib/zlib.c:
- Please NEVER copy fopen_wrappers.c functions to modules. They are ugly
- enough as is and need cleaning up. Duplicating the mess makes things just
- worse and prevents bug fixes in the functions from propogating throughout
- PHP.
- This fix is untested so someone who uses zlib, please test it and report
- back.
2000-06-26 Stanislav Malyshev <[email protected]>
* ext/standard/exec.c: Make exec() fwork on Unix again
2000-06-26 Zeev Suraski <[email protected]>
* configure.in
main/config.w32.h
main/main.c: TRACK_VARS is really no longer necessary...
* php.ini-dist
php.ini-optimized: max_execution_time is no longer UNIX only...
2000-06-26 Stanislav Malyshev <[email protected]>
* sapi/cgi/cgi_main.c: Right name for the function persist_alloc
2000-06-26 Zeev Suraski <[email protected]>
* main/php_virtual_cwd.c:
- Fix bug in virtual dir under Windows when using absolute paths without
- drive letter
2000-06-26 Andi Gutmans <[email protected]>
* sapi/cgi/cgi_main.c:
- Try two in fixing the problem with memory leaks reporting path_translated
2000-06-26 Zeev Suraski <[email protected]>
* sapi/cgi/cgi_main.c:
- Fix problem with filename being freed before possible memory leaks are
- reported by the memory manager
2000-06-26 Jouni Ahto <[email protected]>
* ext/gd/config.m4
ext/gd/gd.c:
- Fixed another missing test for existing functions in libgd.
2000-06-26 Kristian Köhntopp <[email protected]>
* ext/standard/info.c: Corrected a syntax error: Macro requires braces.
* ext/standard/info.c
ext/standard/info.h
ext/standard/basic_functions.c:
Added function php_sapi_name() as written by Stefan Livieratos.
2000-06-26 Andrei Zmievski <[email protected]>
* .cvsignore: ignore libs.mk
* NEWS: Fix up news.
2000-06-26 Stanislav Malyshev <[email protected]>
* sapi/cgi/cgi_main.c: If we freed it, we might not touch it
2000-06-26 Jouni Ahto <[email protected]>
* ext/gd/config.m4
ext/gd/gd.c:
- Test gdImagePaletteCopy and define HAVE_LIBGD15 if found.
- s/HAVE_LIBGD13/HAVE_LIBGD15/ in ImagePaletteCopy, ImageCopyMerge.
2000-06-26 Stefan Roehrich <[email protected]>
* ext/zlib/config.m4: Fix for configure not setting the library path.
2000-06-26 Sterling Hughes <[email protected]>
* NEWS: two too many.
2000-06-25 Sascha Schumann <[email protected]>
* makedist: Fix Bison version check
2000-06-25 Zeev Suraski <[email protected]>
* win32/Win32_Package.txt: Update
* ext/zlib/zlib.dsp: Make the zlib DLL work with the stock zlib library
* ext/pgsql/pgsql.dsp
win32/Win32_Package.txt: - Update .dsp
- Add Win32 'spec' file
2000-06-25 Jouni Ahto <[email protected]>
* NEWS:
Another late one.
2000-06-25 Sterling Hughes <[email protected]>
* NEWS: Add it manually for the release.
2000-06-25 Zeev Suraski <[email protected]>
* ext/imap/imap.dsp:
imap_sendmail.[ch] are missing... Whomever added them, please cvs add them and then
readd them to the project...
2000-06-25 Andi Gutmans <[email protected]>
* win32/README.txt:
- Line breaks at 80 chars and change php4ts.dll -> php4isapi.dll
* makedist:
- The check for bison nukes $1 and $2 which are used later on in the script
- This needs to be fixed sometime. I have 1.28 on my system :)
* NEWS: - Get ready to package
2000-06-25 Egon Schmid <[email protected]>
* ext/gd/gd.c
ext/standard/datetime.c: Now its a todo.
2000-06-25 Zeev Suraski <[email protected]>
* ext/exif/exif.c: Get rid of a warning
* ext/exif/exif.c: PHPAPI is invalid here...
2000-06-25 Egon Schmid <[email protected]>
* ext/gd/gd.c
ext/standard/formatted_print.c:
It was Jouni: Prevent Hartmut finding this until it is actually implemented...
2000-06-25 Zeev Suraski <[email protected]>
* ext/zlib/zlib.c
main/fopen-wrappers.c
main/main.c
main/safe_mode.c
main/safe_mode.h
ext/posix/posix.c
ext/standard/exec.c
ext/standard/file.c
ext/standard/filestat.c
ext/standard/link.c
ext/db/db.c
ext/dbase/dbase.c
ext/filepro/filepro.c
ext/pgsql/pgsql.c:
- I wrote a long msg but the commit didn't go through.
- So here is the short version:
- a) Start moving to binary opens in Windows
- b) Give checkuid_mode() a small face lift including the fopen-wrappers.c
- The mode to this function should at least be a #define but that is for
- another day. Anyway this whole stuff should be given more face lifts in
- the future.
* win32/README.txt: Add Win32 README file
2000-06-25 Sascha Schumann <[email protected]>
* NEWS: better description for recent serializer change
2000-06-25 Egon Schmid <[email protected]>
* ext/standard/array.c:
The second array_merge() is now array_merge_recursive().
* ext/gd/gd.c: A droto is not a proto.
2000-06-25 Sterling Hughes <[email protected]>
* ext/gd/gd.c: Add version checking.
2000-06-25 Jouni Ahto <[email protected]>
* ext/gd/gd.c:
2000-06-25 Sterling Hughes <[email protected]>
* ext/gd/gd.c: Proto.
* ext/gd/gd.c
ext/gd/php_gd.h:
-Added the ImageCopyMerge, ImagePaletteCopy and ImageColorClosestHWB functions
2000-06-25 Jouni Ahto <[email protected]>
* ext/gd/gd.c
ext/gd/php_gd.h:
- Added imagecreatefromwbmp().
- Fixed missing parenthesis when calling function get_active_function_name.
- Added function imagecreatefromwbmp().
2000-06-24 Egon Schmid <[email protected]>
* ext/standard/basic_functions.c:
Correct protos call_user_func() and call_user_method().
2000-06-24 Andi Gutmans <[email protected]>
* win32/php4dllts.dsp: - winsnmp.c has moved to ext/snmp
2000-06-24 Sascha Schumann <[email protected]>
* ext/snmp/winsnmp.c: Revice winsnmp.c from repo-copy
2000-06-24 Zeev Suraski <[email protected]>
* NEWS: credit where credit's due
* sapi/nsapi/nsapi.c: Apply the NSAPI patch
2000-06-24 Jouni Ahto <[email protected]>
* ext/interbase/interbase.c
ext/interbase/php_interbase.h:
- Close cursor immediately before reuse so that calling ibase_free_result is
not necessary anymore. Seems to also prevent a a situation where at request
shutdown cursor was first dropped and tried to close it afterwards when
all the resources were not manually freed, and could occasionally segfault.
2000-06-24 Andi Gutmans <[email protected]>
* main/php_virtual_cwd.c: - Forgot to remove comment
* main/php.h
main/php_virtual_cwd.c
main/php_virtual_cwd.h:
- Only use VIRTUAL_DIR in ZTS mode until it is thoroughly tested.
- Mutex popen() in Windows as the UNIX trick doesn't work there.
2000-06-24 Sascha Schumann <[email protected]>
* pear/Makefile.in: Also install XML-related header files.
* ext/snmp/winsnmp.c: Get rid of files in the dl directory hierarchy.
PHP compiles without them under Unix, please test this also under Win32.
* ext/informix/ifx.ec
ext/xml/xml.c
ext/zlib/zlib.c
sapi/servlet/servlet.c
ext/snmp/snmp.c
ext/oracle/oracle.c
ext/pdf/pdf.c
ext/mcal/php_mcal.c
ext/mssql/php_mssql.c
ext/odbc/php_odbc.c
ext/hyperwave/hw.c
ext/icap/php_icap.c
ext/interbase/interbase.c
ext/java/java.c
ext/fdf/fdf.c
ext/filepro/filepro.c
ext/gd/gd.c
ext/cpdf/cpdf.c
ext/dav/dav.c
ext/db/db.c
ext/dbase/dbase.c: Stop including dl/phpdl.h.
2000-06-24 Zeev Suraski <[email protected]>
* ext/standard/incomplete_class.c
ext/standard/output.c
ext/standard/php_output.h
win32/php4dllts.dsp:
- Make the output globals accessible from the outside world
- Fix Win32 compilation
2000-06-24 Sascha Schumann <[email protected]>
* sapi/apache/apMakefile.tmpl:
alloc.h has been removed from the Apache 1.3 CVS tree
2000-06-24 Joey Smith <[email protected]>
* ext/sybase_ct/config.m4: Fix for bug #3983
2000-06-24 Andi Gutmans <[email protected]>
* NEWS: - Entries start with capital letters
2000-06-24 Hartmut Holzgraefe <[email protected]>
* ext/skeleton/create_stubs: <funcprototype> added to xml generation
2000-06-23 Zeev Suraski <[email protected]>
* ext/wddx/wddx.c: Fix Win32 compilation
2000-06-23 Egon Schmid <[email protected]>
* ext/standard/browscap.c: Added a description to get_browser().
* ext/session/session.c: Fixed protos.
* ext/pgsql/pgsql.c: Typos.
2000-06-23 Sascha Schumann <[email protected]>
* ext/wddx/wddx.c: Make use of incomplete class API
* ext/standard/incomplete_class.c
ext/standard/php_incomplete_class.h
ext/standard/var.c: API change: Use zval * instead of zval **
* ext/standard/Makefile.in
ext/standard/incomplete_class.c
ext/standard/php_incomplete_class.h
ext/standard/var.c:
Move the incomplete class stuff into its own file, so that we can
make it easier accessible to WDDX.
2000-06-23 Rasmus Lerdorf <[email protected]>
* NEWS: Fix UdmSearch spelling
2000-06-23 Sascha Schumann <[email protected]>
* NEWS: .
* ext/standard/basic_functions.c
ext/standard/basic_functions.h
ext/standard/var.c: Change the serialization semantics to:
* if a certain object is of class INCOMPLETE_CLASS, the serializer will
lookup the previously stored original class name of that object, and
use that class name to serialize the object.
Change the deserialization semantics to:
* if the class of an object, which is to be instantiated, is not found
in the current context, the class name will be stored for later
retrieval, and the class of that object is changed to INCOMPLETE_CLASS.
All function calls, property gets, and property sets operating on an
object of class INCOMPLETE_CLASS cause the execution to halt and to
output an informative error message.
2000-06-23 Andi Gutmans <[email protected]>
* main/SAPI.c: - COMPILE_ERROR should only be used in Zend
2000-06-23 Thies C. Arntzen <[email protected]>
* ext/standard/basic_functions.c
ext/standard/reg.c
ext/standard/reg.h: - added spliti() function.
2000-06-23 Hartmut Holzgraefe <[email protected]>
* ext/standard/url_scanner.c: debug-code removed
* ext/standard/url_scanner.c
ext/standard/url_scanner.re:
this change should solve all problems regarding trans_sid_id and
"empty" href urls like "", "#name", "?param=val" ...
2000-06-23 Sascha Schumann <[email protected]>
* ext/standard/file.c
main/main.c: Remove some unnecessary CLS_FETCH()s.
2000-06-23 Rasmus Lerdorf <[email protected]>
* ext/oci8/config.m4
ext/oracle/config.m4:
Fix spacing and say that --with-oracle uses the oci7 interface
2000-06-22 Andi Gutmans <[email protected]>
* win32/php4dllts.dsp: - Make Windows compile. Was missing crc32.c
2000-06-22 Zeev Suraski <[email protected]>
* main/php_version.h
configure.in: Update to 4.0.1
2000-06-22 Andi Gutmans <[email protected]>
* NEWS:
- Improve memory cache performance and increase cache size. (Stas, Zend Engine)
2000-06-22 Rui Hirokawa <[email protected]>
* pear/DB/odbc.php
pear/DB/pgsql.php:
added a variable to save the current row in pgsql. added a function to odbc module.
2000-06-21 Rasmus Lerdorf <[email protected]>
* ext/standard/Makefile.in
ext/standard/basic_functions.c
ext/standard/basic_functions.h
ext/standard/crc32.c:
Add a crc32 checksum function - used by the UdmSearch search engine
and currently run through a system call. This will speed up the UdmSearch
php frontend significantly.
2000-06-21 Sascha Schumann <[email protected]>
* configure.in: Add alloca.h check
Remove some unused header checks