Ticket #151 (closed regression: fixed)

Opened 2 years ago

Last modified 2 years ago

protected properties can't be accessed

Reported by: bart Assigned to: somebody
Priority: blocker Milestone: 0.9.6
Component: eAccelerator Version: 0.9.5
Keywords: protected propertie Cc:

Description

This test case fails when eAccelerator is enabled:

<?php
        class Base {
                protected $test = 'blaat';

                public function doTest() {
                        echo $this->test;
                }
        }

        $obj = new Base();
        $obj->doTest();
?>

Changing this in private make the testcase work

Change History

07/26/06 17:32:05 changed by bart

I think this is the same one as bug #106 When refreshing a few times this makes eAccelerator segfault!

07/28/06 22:33:46 changed by bart

This one if fixed in rev [251]

07/28/06 22:33:54 changed by bart

  • status changed from new to closed.
  • resolution set to fixed.