Author Topic: Bug: php closing tag in code breaks tagging  (Read 1919 times)

jtkangas

  • Community Member
  • Posts: 6
  • Hero Points: 0
Bug: php closing tag in code breaks tagging
« on: March 10, 2014, 04:31:24 PM »
Hi,

I noticed that php closing tag in code breaks next-tag and prev-tag commands  (Ctrl+Down, Ctrl+Up). Tested on SE18.0.1.2 Linux.

<?php

function aa() {
    cc();
}

function bb() {
    $x="?>";
}

function cc() {
}

?>