Community
Participate
Working Groups
Steps: Select some lines in a php file on the editor and try to toggle comment them (press "apple key + /"). Repeat this action. // function row_color($i) // { // $bgcolor1 = "white"; // $bgcolor2 = "yellow"; // if ( ($i % 2) == 0 ) { // return $bgcolor1; // } else { // return $bgcolor2; // } // } Expected Result: The text should be uncomment: function row_color($i) { $bgcolor1 = "white"; $bgcolor2 = "yellow"; if ( ($i % 2) == 0 ) { return $bgcolor1; } else { return $bgcolor2; } } Actual Result: The comment becomes double: //// function row_color($i) //// { //// $bgcolor1 = "white"; //// $bgcolor2 = "yellow"; //// if ( ($i % 2) == 0 ) { //// return $bgcolor1; //// } else { //// return $bgcolor2; //// } //// }
fixed in head
Verified. Ilina Stefanova