This code works fine in Code Explorer:
<?php
class test {
    
  function a(){
   /*       
       if (x!=y) do_something;
    */  
   
  }
  
  function b(){
  }
}
?>

If I add a closing brace in the block comment inside a function, code explorer
incorrectly shows method b (and all other methods defined after) to be outside
class Test as a global function:
<?php
class Test {
    
  function a(){
   /*       
       if (x!=y) { do_something; } 
    */  
   
  }
  
  function b(){
  }
}
?>

Tested with 4.5.5, 4.5.8 and 4.5.9

-- 
<http://forum.pspad.com/read.php?4,63781,63781>
PSPad freeware editor http://www.pspad.com

Odpovedet emailem