diff --git a/inc/html.php b/inc/html.php
index 99fa4a9ce9ce6e0f328bc10038c5b9edc0c3810e..88fa0b4ff73b6e36e1568953649564ffaf42fad6 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -89,7 +89,7 @@ function html_login(){
 function html_secedit($text,$show=true){
     global $INFO;
 
-    $regexp = '#<!-- EDIT(\d+) ([A-Z]+) (?:"([^"]*)" )?\[(\d+-\d*)\] -->#';
+    $regexp = '#<!-- EDIT(\d+) ([A-Z_]+) (?:"([^"]*)" )?\[(\d+-\d*)\] -->#';
 
     if(!$INFO['writable'] || !$show || $INFO['rev']){
         return preg_replace($regexp,'',$text);
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index 552a8332dd94044c9399f0e0720c1a631c346ea3..176411c7532f519d2fe2422fbe25584774555c51 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -49,7 +49,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
      * @return string A marker class for the starting HTML element
      * @author Adrian Lang <lang@cosmocode.de>
      */
-    protected function startSectionEdit($start, $type, $title = null) {
+    public function startSectionEdit($start, $type, $title = null) {
         static $lastsecid = 0;
         $this->sectionedits[] = array(++$lastsecid, $start, $type, $title);
         return 'sectionedit' . $lastsecid;
@@ -62,7 +62,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
                        the page
      * @author Adrian Lang <lang@cosmocode.de>
      */
-    protected function finishSectionEdit($end = null) {
+    public function finishSectionEdit($end = null) {
         list($id, $start, $type, $title) = array_pop($this->sectionedits);
         if (!is_null($end) && $end <= $start) {
             return;