FIXED: [15.90b3] Code Explorer glitch with PHP class

Post bug reports when testing beta versions here.
Post Reply
User avatar
pjj
Posts: 2130
Joined: 13 Oct 2009 13:48
Location: Kraków, Poland

FIXED: [15.90b3] Code Explorer glitch with PHP class

Post by pjj »

If a file contains PHP class, e.g.

Code: Select all

<?php
class Vegetable {
    public $edible;
    public $color;

    public function __construct($edible, $color = "green")
    {
        $this->edible = $edible;
        $this->color = $color;
    }
}
this class "escapes" Module set:
code-explorer-php-class.png
code-explorer-php-class.png (3.5 KiB) Viewed 3561 times
Alium tibi quaere fratrem; hic, quem tuum putas, meus est. Titus Flāvius Caesar Vespasiānus Augustus
User avatar
Rickard Johansson
Site Admin
Posts: 6628
Joined: 19 Jul 2006 14:29

Re: [15.90b3] Code Explorer glitch with PHP class

Post by Rickard Johansson »

Fixed in next release. Thanks!
Post Reply