forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
12120 lines (8458 loc) · 307 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
2003-05-20 Sterling Hughes <[email protected]>
* zend_operators.c:
bah humbug, use the pointer based version, which turns out to be an
instruction
faster
* zend_operators.c:
use pointer arithmetic for the normal zend_str_tolower()
2003-05-20 Marcus Boerger <[email protected]>
* zend_execute.c:
No need to copy the zval unless __clone() is called
2003-05-20 Sterling Hughes <[email protected]>
* zend_operators.c:
make this faster and sexier
* zend_execute.c:
use the new zend_str_tolower_copy() function
* zend_operators.c:
doesn't need to be register
* zend_execute_API.c
zend_operators.c
zend_operators.h:
optimize the lookups by avoiding a copy and then another pass
Naked Dancing Girls should be given to: Myself, Zeev, Marcus,
and George Schlossnagle (in no particular order)
* zend_API.h
zend_execute_API.c:
add fast_call_user_function()
2003-05-20 Hartmut Holzgraefe <[email protected]>
* zend_API.h
zend_constants.h
zend_operators.h:
C++ compile fixes
2003-04-07 Jani Taskinen <[email protected]>
* zend_language_scanner.l:
Fixed bug #23093 (highlight_string() crashed with __FUNCTION__)
2003-04-07 Sterling Hughes <[email protected]>
* zend_compile.h:
add markers that make this file easy to parse for external sources
2003-04-04 Andrei Zmievski <[email protected]>
* zend_API.h:
Introduce ZEND_ME() and ZEND_METHOD() macros. Use these for declaring
class methods to avoid name collisions.
2003-04-04 Stanislav Malyshev <[email protected]>
* zend_API.c
zend_API.h:
Fix namespace issues
2003-04-03 Andrei Zmievski <[email protected]>
* zend_API.c:
Patch from Timm Friede for when EG(active_namespace) is NULL initially.
* zend.c
zend_API.c
zend_compile.c:
Initialize all relevant zend_class_entry fields to avoid accidental
crashes.
2003-04-03 Sebastian Bergmann <[email protected]>
* zend_list.c:
Leftover.
2003-04-03 Sterling Hughes <[email protected]>
* zend_list.c
zend_list.h:
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
i will not commit before 12:00
2003-04-02 Andrei Zmievski <[email protected]>
* zend_API.c
zend_API.h:
- Add zend_register_internal_namespace() API function.
- Add zend_register_internal_class_in_ns() API function.
* zend_compile.h:
Simplify.
2003-04-02 Derick Rethans <[email protected]>
* zend_list.c:
- Fix whitespace
2003-04-02 Sterling Hughes <[email protected]>
* zend_list.c
zend_list.h:
add the ability for curl_multi_info to introspect the handles.
2003-04-02 Andrei Zmievski <[email protected]>
* zend_compile.c
zend_compile.h
zend_globals.h
zend_language_parser.y
zend_language_scanner.l:
Implement a different way to catch documentation comments.
* zend_compile.c
zend_compile.h
zend_highlight.c
zend_language_parser.y
zend_language_scanner.l:
Revert portions of the doc comment patch. There should be no parser
errors now.
2003-04-02 Stanislav Malyshev <[email protected]>
* zend_builtin_functions.c
zend_compile.h
zend_execute.c:
allow class_exists() to work with namespaces too.
add CLASS_IS_NAMESPACE macro
* zend_builtin_functions.c:
fix typo
* zend_builtin_functions.c:
fix parameterless get_declared_classes call
2003-04-01 Andrei Zmievski <[email protected]>
* zend_execute.c:
Stas's patch on zend_execute.c (1.448 -> 1.449) resulted in a bug where
the namespaced member accesses didn't work. This should hopefully
correct it.
* zend_builtin_functions.c
zend_compile.c
zend_compile.h
zend_execute.c
zend_object_handlers.c
zend_opcode.c:
Split ZEND_NAMESPACE into user and internal namespaces. Hope this is
okay with engine folks.
2003-04-01 Stanislav Malyshev <[email protected]>
* zend_builtin_functions.c:
improve namespace name hanfling
* zend_builtin_functions.c:
fix get_declared_classes()
* zend_language_parser.y
zend_language_scanner.l:
Add __NAMESPACE__ auto-constant.
* zend_builtin_functions.c:
make get_declared_classes() work with namespaces (based on Tal Peer's
patch)
2003-03-31 Andrei Zmievski <[email protected]>
* zend.h
zend_compile.c
zend_compile.h
zend_globals.h
zend_language_parser.y
zend_language_scanner.l
zend_opcode.c:
Multi-purpose patch:
- The fields of zend_namespace were not completely initialized which
led to a variety of problems.
- The occurrence of class/interface/namespace definition is now
captured.
- Functions/classes/interfaces/namespaces can be preceded by doc
comments which are stored for use by extensions.
2003-03-31 Stanislav Malyshev <[email protected]>
* zend.c:
Use strncpy instead of sprintf
2003-03-30 Andrei Zmievski <[email protected]>
* zend_language_parser.y:
Since zend_do_begin_class_member_function_call assumes the previous
opcode is FETCH_CONSTANT, swap the calls around.
2003-03-30 Sebastian Bergmann <[email protected]>
* zend_execute.c:
ZTS fix.
2003-03-30 Stanislav Malyshev <[email protected]>
* zend.c:
Try to report class name of the exception
* zend_execute.c:
Fix namespace switch
2003-03-29 Zeev Suraski <[email protected]>
* zend_compile.c:
Add missing initialization
* zend_compile.c:
Fix crash
* zend_API.c
zend_compile.c
zend_compile.h:
Initial support for enforcing prototype of abstract/interface method
implementations
2003-03-29 Sterling Hughes <[email protected]>
* zend.c:
remove unused variable
2003-03-27 Stanislav Malyshev <[email protected]>
* zend_execute.c:
fix fetch_class buglet
2003-03-26 Stanislav Malyshev <[email protected]>
* zend_execute.c
zend_language_parser.y:
Un-nest namespaces - now namespace X { namespace Y {} } is a parse error
Also refine namespaced includes
2003-03-26 Ilia Alshanetsky <[email protected]>
* zend_compile.c:
Fixed bug #22900 (declaration of namespaces with same name results in
leaks).
2003-03-26 Sebastian Bergmann <[email protected]>
* zend.c
zend_API.c
zend_API.h
zend_builtin_functions.c
zend_compile.h
zend_execute.c
zend_execute_API.c
zend_opcode.c
zend_operators.h:
Eliminate TSRMLS_FETCH() calls in destroy_op_array() and
zend_get_class_entry().
* zend_API.c
zend_object_handlers.c
zend_objects.c
zend_objects.h:
Eliminate TSRMLS_FETCH() calls in zend_objects_new() and
zend_objects_get_address().
2003-03-25 Andi Gutmans <[email protected]>
* zend_compile.c:
- Temporarily fix problem with inheriting from an internal class. This
might
- need some rework in the future (thanks to Marcus)
2003-03-24 Stanislav Malyshev <[email protected]>
* zend_execute.c:
Fix {include|require}_once error message - if open
fails, don't use tream, use original name.
2003-03-23 Andi Gutmans <[email protected]>
* zend.c:
- Fix win32 build
2003-03-23 Stanislav Malyshev <[email protected]>
* zend.c:
resore namespace on shutdown - since some functions use
EG() and CG() pointers
2003-03-23 Sebastian Bergmann <[email protected]>
* zend_default_classes.c:
ZTS fix.
2003-03-23 Zeev Suraski <[email protected]>
* zend_compile.c:
Another fix for implicit public, perhaps it was not such a good idea :I
2003-03-23 Sebastian Bergmann <[email protected]>
* Zend.dsp
ZendTS.dsp
zend_default_classes.c:
Add new files to ZendTS.dsp. Sync list of files in Zend.dsp with
ZendTS.dsp. ZTS fixes.
2003-03-23 Sterling Hughes <[email protected]>
* zend_default_classes.h:
DEFAULT_CLASSES_H not DEFAULT_INTERFACES_H
* Makefile.am
zend.c
zend_default_classes.c
zend_default_classes.h:
add a standard Exception class.
2003-03-22 Shane Caraveo <[email protected]>
* zend_compile.h:
export functions needed by cli
* zend_language_scanner.l:
fix crash in win32 debug build
2003-03-20 Stanislav Malyshev <[email protected]>
* Zend.m4:
Add stdlib.h too - it is needed fot strto{ld}
2003-03-19 Andrei Zmievski <[email protected]>
* zend_compile.c
zend_compile.h
zend_globals.h
zend_highlight.c
zend_language_parser.y
zend_language_scanner.l:
- Keep track of starting/ending line numbers for user functions.
- Store last parsed doc comment in a compiler global for future use.
* zend_API.c:
Lowercase the function name when used as key in the function name. The
original case is still preserved in zend_function structure.
2003-03-18 Zeev Suraski <[email protected]>
* zend_compile.c
zend_object_handlers.c:
- Fix situation where a derived class declares a public (or implicit
public)
with the same name as a private in the parent
- Optimize 'static binding' of private properties a bit
2003-03-18 Stig Bakken <[email protected]>
* RFCs/002.txt:
- email address change
2003-03-17 Stanislav Malyshev <[email protected]>
* zend_extensions.c:
MFZE1
2003-03-17 Jani Taskinen <[email protected]>
* Makefile.am:
Added missing zend_mm.c file and renamed zend_object_API.c ->
zend_objects_API.c
2003-03-13 Andrei Zmievski <[email protected]>
* zend_API.c:
Fix warning in va_start().
2003-03-12 Andrei Zmievski <[email protected]>
* zend_API.c:
Initialize the namespace when registering functions.
2003-03-12 Zeev Suraski <[email protected]>
* zend_compile.c:
Fix a crash bug in the implicit public declaration
2003-03-11 Zeev Suraski <[email protected]>
* zend_execute.c
zend_object_handlers.c:
Fix handling of ::func()
2003-03-10 Zeev Suraski <[email protected]>
* zend_compile.c:
Clean redundant code
2003-03-10 Jani Taskinen <[email protected]>
* zend_compile.c:
Fixed some leaks. Patch by Moriyoshi
2003-03-10 Shane Caraveo <[email protected]>
* zend_config.w32.h:
fix isinf for win32
2003-03-09 Zeev Suraski <[email protected]>
* zend_language_parser.y:
Optimize
* zend_compile.c
zend_compile.h
zend_language_parser.y:
Fix handling of ::foo
* zend_compile.c:
Cleanup
2003-03-09 Andi Gutmans <[email protected]>
* zend_language_scanner.l:
- Nuke junk
2003-03-09 Zeev Suraski <[email protected]>
* zend_compile.c
zend_compile.h
zend_language_parser.y:
Fix parsing rules of namespaces/classes
* zend_language_parser.y:
Add ability to use ::interface_name in implements
* zend_compile.c:
Fix :: handling
2003-03-07 Sebastian Bergmann <[email protected]>
* ZEND_CHANGES:
Dedicated to Greg Beaver <[email protected]>.
* ZEND_CHANGES:
Document 'final'.
* ZEND_CHANGES:
Fix class type hints example.
* ZEND_CHANGES:
Update 'abstract' section.
2003-03-07 Jani Taskinen <[email protected]>
* zend_ini.c
zend_ini.h:
Renamed OnUpdateInt -> OnUpdateLong to prevent further misunderstandings.
* zend_execute.c:
Better fix for the memleaks (bug 19943) by Moriyoshi
2003-03-06 Zeev Suraski <[email protected]>
* zend_compile.c
zend_execute.c:
Fix warnings
* zend_execute.c:
Fix error message
* zend_compile.c
zend_compile.h
zend_execute.c
zend_language_parser.y:
Require abstract classes to be explicitly declared 'abstract', in order to
avoid making developers traverse the entire class/interface hierarchy
before they can figure out whether a class is instantiable
(ok, so it makes sense :)
2003-03-06 Sebastian Bergmann <[email protected]>
* ZEND_CHANGES:
-german+english+.
* ZEND_CHANGES:
D some TBDs
2003-03-06 Jani Taskinen <[email protected]>
* zend_execute.c:
Fixed bug #19943 (the memleaks)
2003-03-06 Ilia Alshanetsky <[email protected]>
* zend_highlight.c:
More cleanup of the zend_strip() function.
No longer strip __LINE__, since while it may become useless it could break
code where __LINE__ is passed as a function parameter.
* zend_highlight.c:
Fixed in zend_strip() that corrupted heredoc.
Optimized the writing routine by moving from putchar() to fwrite().
Changed hardcoded opcode # to it's defined name.
2003-03-06 Zeev Suraski <[email protected]>
* zend_compile.c
zend_compile.h
zend_execute.c:
Change opcode name
* zend_compile.c
zend_compile.h
zend_execute.c
zend_language_parser.y:
Add class type hints
2003-03-05 Zeev Suraski <[email protected]>
* zend_compile.c:
Fix auto globals
* zend_compile.c
zend_execute.c
zend_language_parser.y:
Implement $obj::static_func()
* zend.h
zend_builtin_functions.c
zend_compile.c
zend_compile.h
zend_execute.c
zend_globals.h
zend_language_parser.y
zend_language_scanner.l
zend_opcode.c
zend_operators.c
zend_operators.h:
Add support for interfaces
2003-03-04 Zeev Suraski <[email protected]>
* zend_compile.c
zend_language_parser.y:
Remove legacy code
* zend_compile.c:
Remove redundant code
2003-03-03 Harald Radi <[email protected]>
* zend_API.c:
add missing strtolower
* zend_API.c
zend_API.h:
commiting zend_disable_class patch for George:
disabled classes will be replaced by dummy classes
that print a warning upon instanciation
2003-03-02 Zeev Suraski <[email protected]>
* zend_execute_API.c:
Fix destructors some more
* zend_compile.c
zend_compile.h:
Improve infrastructure
* zend.c
zend_compile.c
zend_compile.h:
Add infrastructure for JIT initialization of auto globals
2003-03-01 Zeev Suraski <[email protected]>
* zend_compile.c:
Fix mem leak
2003-03-01 Andi Gutmans <[email protected]>
* zend_compile.c:
- Make __construct() have higher priority than class name functions
- for constructors.
- Fix problem with the engine allowing final/abstract for the same method.
- Both patches are by Marcus Börger.
2003-02-27 Rasmus Lerdorf <[email protected]>
* zend_ini_scanner.l:
MFB: We know ini file scanning will never be interactive, so speed it up a
bit. Need a dynamic check for the language scanner.
2003-02-26 Sebastian Bergmann <[email protected]>
* ZEND_CHANGES:
Syntactic sugar is sweet.
2003-02-25 Zeev Suraski <[email protected]>
* zend_compile.c:
Get the bits right - final/private fix
2003-02-25 Jani Taskinen <[email protected]>
* acconfig.h:
Do not redefine zend_isnan if it is already defined.
* Zend.m4:
- Fixed bug #14245 ('make install' fails on AIX when using --with-apxs).
2003-02-24 Stanislav Malyshev <[email protected]>
* zend_compile.c:
fix exception handling
2003-02-24 Zeev Suraski <[email protected]>
* zend_compile.c
zend_compile.h
zend_language_parser.y
zend_language_scanner.l:
Add 'final'
2003-02-24 Sebastian Bergmann <[email protected]>
* ZEND_CHANGES:
Remove obsolete not on redeclaring protected members.
* ZEND_CHANGES:
Leftover.
* ZEND_CHANGES:
Initial documentation of namespace {}.
2003-02-23 Zeev Suraski <[email protected]>
* zend_compile.c:
Move abstract inheritance logic to the right spot
* zend_compile.c:
Fixed abstract handling in inheritence
2003-02-20 Wez Furlong <[email protected]>
* zend_stream.c:
-cough*
Fix another stupid mistake.
2003-02-20 Stanislav Malyshev <[email protected]>
* zend_compile.c
zend_compile.h
zend_execute.c
zend_language_parser.y
zend_opcode.c:
Allow namespaces to have a number of parts. I.e., now you can do:
namespace foo {
function abc() {}
}
...
namespace foo {
functio def() {}
}
2003-02-19 Wez Furlong <[email protected]>
* zend_stream.c:
Fix stupid mistake that only affected interactive mode.
2003-02-18 Rasmus Lerdorf <[email protected]>
* zend_stream.c:
fileno() needs a FILE * here, and at least on FreeBSD with gcc-2.95.3
it is unable to figure out that this is indeed a FILE * and hence it
won't compile without this cast.
2003-02-18 Zeev Suraski <[email protected]>
* zend.h
zend_compile.c
zend_compile.h
zend_execute.c
zend_language_scanner.l
zend_opcode.c:
Avoid using a C++ reserved word
2003-02-18 Wez Furlong <[email protected]>
* ZendTS.dsp
flex.skl:
Fixup build for win32
* Makefile.am
flex.skl
zend.c
zend.h
zend_compile.h
zend_execute.c
zend_globals.h
zend_ini_scanner.l
zend_language_scanner.h
zend_language_scanner.l
zend_stream.c
zend_stream.h:
Implement simple stream support in the ZE scanners.
2003-02-17 Zeev Suraski <[email protected]>
* zend_language_parser.y:
Whitespace & minor renames
* zend_language_parser.y:
whitespace
* zend_execute.c
zend_object_handlers.c
zend_object_handlers.h:
Improve handling of static member variables
* zend_config.w32.h
zend_ini_parser.y:
Improve Win32 build performance
2003-02-16 Zeev Suraski <[email protected]>
* zend_execute.c:
Fix complex cases of self-assignments (bugs #21600, #22231)
* zend_execute.c:
Make EG(This) and EG(scope) available to internal methods
* zend_execute.c:
Revert patches - they weren't ready yet!
* zend.c:
Fix initialization
2003-02-16 Georg Richter <[email protected]>
* zend_execute.c:
fixed compiler warning
* zend_execute.c:
tested patch from Zeev (fixes oo-bug in ext/mysqli)
2003-02-16 Stanislav Malyshev <[email protected]>
* zend_compile.c
zend_language_parser.y:
add support for ::foo syntax meaning "global one"
* zend_compile.c:
remove debug prints
2003-02-16 Sebastian Bergmann <[email protected]>
* zend.c
zend_API.c
zend_compile.c
zend_compile.h
zend_execute.c
zend_execute_API.c:
ZTS fixes
2003-02-16 Stanislav Malyshev <[email protected]>
* zend_object_handlers.c:
namespace patch - static variable access
* zend.c
zend.h
zend_compile.c
zend_compile.h
zend_constants.c
zend_execute.c
zend_execute.h
zend_execute_API.c
zend_globals.h
zend_language_parser.y
zend_language_scanner.l
zend_opcode.c:
Namespace patch. Big changes:
1. Nested classes are gone.
2. New syntax for namespaces:
namespace foo {
class X { ... }
function bar { ... }
var x = 1;
const ZZ = 2;
}
3. Namespaced symbol access: $x = new foo::X; - etc.
For now, namespaces are case insensitive, just like classes.
Also, there can be no global class and namespace with the same name
(to avoid ambiguities in :: resolution).
2003-02-15 Ilia Alshanetsky <[email protected]>
* zend_ini_scanner.l:
Added feature #19645 (ini parser can now handle quoted multi-line values).
2003-02-14 Thies C. Arntzen <[email protected]>
* zend_execute_API.c:
init current_execute_data befor we start executing
* Makefile.am:
ups
* Makefile.am:
add really nice dump_bt function for debugging in gdb
2003-02-13 Zeev Suraski <[email protected]>
* zend_object_handlers.c:
Fix error handling in illegal property access
2003-02-13 Harald Radi <[email protected]>
* zend_language_scanner.l:
MFB PHP_4_3
2003-02-12 Ilia Alshanetsky <[email protected]>
* zend_API.c
zend_API.h:
Removed zend_get_module(), this function is not used by anything and more
importantly. it does not work. It tries to find data based on numeric keys
in hash table using string keys.
2003-02-12 Zeev Suraski <[email protected]>
* zend_compile.c:
Fix declaration of class members that don't have an explicit access
modifier
2003-02-11 Zeev Suraski <[email protected]>
* zend_compile.c:
Fix require() handling - that's an old bug!
* zend_compile.c
zend_compile.h
zend_language_parser.y:
Improve parser handling of 'abstract'
2003-02-10 Zeev Suraski <[email protected]>
* zend_compile.c:
Fix zend_initialize_class_data()
* zend.c
zend.h
zend_API.c
zend_compile.c
zend_compile.h:
Centralize class initialization
* zend_compile.c
zend_compile.h
zend_language_parser.y:
- Treat $this->foo inside class X as an implicit 'public $foo' if X::$foo
is not explicitly declared
- Forbid multiple declaration of the same variable
* zend_execute.c:
whitespace
* zend_API.c
zend_compile.c:
Add missing destructors
2003-02-10 Stanislav Malyshev <[email protected]>
* zend_object_handlers.c:
update static constants too
2003-02-10 Zeev Suraski <[email protected]>
* zend_builtin_functions.c:
Fix get_parent_class()
* zend_object_handlers.c:
Restore missing check
* zend_execute.c
zend_execute_API.c:
Add ability to reference self:: and parent:: in constant initializers
(bug #21849)
* zend_execute.c:
Remove redundant code
2003-02-09 Zeev Suraski <[email protected]>
* zend_execute.c:
Fix the array() problem (and probably some other problems too)
2003-02-08 Georg Richter <[email protected]>
* zend_API.c
zend_API.h:
fixed zend_parse_method_param
2003-02-08 Sebastian Bergmann <[email protected]>
* zend_builtin_functions.c:
zend_config.h (and its Win32 version) is already included by zend.h
2003-02-08 Ilia Alshanetsky <[email protected]>
* zend_builtin_functions.c:
The string.h is already avaliable through zend.h, so the manual inclusion
is not necessary.
2003-02-07 Ilia Alshanetsky <[email protected]>
* zend_builtin_functions.c:
Added a check to ensure that string.h is avaliable before trying to use it.
Thanks Andi.
* zend_builtin_functions.c:
Added missing header.
2003-02-07 Zeev Suraski <[email protected]>
* zend_globals.h
zend_object_handlers.c:
Improve PPP handling of properties
* zend_config.w32.h:
Better fix
* zend_config.w32.h:
Fix Windows build
2003-02-07 Ilia Alshanetsky <[email protected]>
* zend_builtin_functions.c:
Fixed bug #15734 (Added an optional parameter to get_defined_constants(),
which if passed, will include information regarding who created the
constant).
2003-02-06 Ilia Alshanetsky <[email protected]>
* zend_builtin_functions.c:
Fixed bug #19506 (get_extension_funcs() can now retrieve a list of built-in
Zend Engine functions, if "zend" is specified as the module name).
Made get_extension_funcs() on failure.
2003-02-06 Zeev Suraski <[email protected]>
* zend_compile.c:
Fix the 2nd buglet in the error message :)
* zend_object_handlers.c:
Fix check
* zend_hash.c
zend_hash.h:
Fix prototype (may have caused stack corruption)
2003-02-05 Zeev Suraski <[email protected]>
* zend_execute.c
zend_object_handlers.c
zend_object_handlers.h
zend_objects_API.c:
- read_property cleanup
- Implement unset/isset/empty for PPP
* zend.c