summaryrefslogtreecommitdiff
path: root/inc/parser/handler.php
diff options
context:
space:
mode:
authorAdrian Lang <lang@cosmocode.de>2009-11-19 15:06:19 +0100
committerAdrian Lang <lang@cosmocode.de>2010-01-19 16:41:12 +0100
commit07c2b1c7ce9255456bf19c45cf9d34452cec2af1 (patch)
treed82743e5711fdc2713530f4d09c4a01a293ce62e /inc/parser/handler.php
parent7c4635c4cfa34ef378423e198f9e78548cce62f0 (diff)
downloadrpg-07c2b1c7ce9255456bf19c45cf9d34452cec2af1.tar.gz
rpg-07c2b1c7ce9255456bf19c45cf9d34452cec2af1.tar.bz2
Add TABLE range marker for table editing
darcs-hash:20091119140619-e4919-15efddc768526a6c1f6472f83ede17019144ffa3.gz
Diffstat (limited to 'inc/parser/handler.php')
-rw-r--r--inc/parser/handler.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/inc/parser/handler.php b/inc/parser/handler.php
index eaa42f9bf..ea5a69b35 100644
--- a/inc/parser/handler.php
+++ b/inc/parser/handler.php
@@ -589,10 +589,11 @@ class Doku_Handler {
} else {
$this->_addCall('tablecell', array(), $pos);
}
+ $this->status['table_begin'] = $pos;
break;
case DOKU_LEXER_EXIT:
- $this->_addCall('table_end', array(), $pos);
+ $this->_addCall('table_end', array($this->status['table_begin']+1, $pos), $pos);
$this->CallWriter->process();
$ReWriter = & $this->CallWriter;
$this->CallWriter = & $ReWriter->CallWriter;
@@ -1222,7 +1223,7 @@ class Doku_Handler_Table {
}
function tableEnd($call) {
- $this->tableCalls[] = array('table_close',array(),$call[2]);
+ $this->tableCalls[] = array('table_close',$call[1],$call[2]);
$this->finalizeTable();
}