Mantis Bugtracker
  

Viewing Issue Advanced Details Jump to Notes ] View Simple ] Issue History ] Print ]
ID Category Severity Reproducibility Date Submitted Last Update
0003608 [Quercus] major always 07-24-09 03:38 07-24-09 03:38
Reporter tlandmann View Status public  
Assigned To
Priority normal Resolution open Platform
Status new   OS
Projection none   OS Version
ETA none Fixed in Version Product Version 4.0.0
  Product Build
Summary 0003608: "private" access level ignored
Description The example program below (also attached as a file for your convenience) outputs the following in standard PHP 5.2.6:

doing 1_a
doing 1_b

..., which is the expected result.

-----------------

In Quercus it prints:

doing 2_a
/var/www/htdocs_selbst_branch_v2/test.php:8: Warning: required argument missing
doing 2_b

..., which means that Quercus ignores the "private" access (security issue!) and that my nice framework with a well-designed hierarchy of decorator classes currently doesn't work in Quercus.


======================================
Sourcecode:
--------------------------------------

class class_1
{
    public function do_something_1()
    {
        $this->do_it_a('dummy');
        $this->do_it_b('dummy');
    }
    
    private function do_it_a($param)
    {
        echo "doing 1_a\n";
    }
    
    private function do_it_b($param)
    {
        echo "doing 1_b\n";
    }
}

class class_2 extends class_1
{
    private function do_it_a($param)
    {
        echo "doing 2_a\n";
    }
    
    private function do_it_b($param1, $param2)
    {
        echo "doing 2_b\n";
    }
}

$object=new class_2;
$object->do_something_1();
Steps To Reproduce
Additional Information
Attached Files  quercus_private_access_level_bug.php [^] (507 bytes) 07-24-09 03:38

- Relationships

There are no notes attached to this issue.

- Issue History
Date Modified Username Field Change
07-24-09 03:38 tlandmann New Issue
07-24-09 03:38 tlandmann File Added: quercus_private_access_level_bug.php


Mantis 1.0.0rc3[^]
Copyright © 2000 - 2005 Mantis Group
27 total queries executed.
24 unique queries executed.
Powered by Mantis Bugtracker