summaryrefslogtreecommitdiff
path: root/inc/parser
diff options
context:
space:
mode:
authorandi <andi@splitbrain.org>2005-07-13 20:04:56 +0200
committerandi <andi@splitbrain.org>2005-07-13 20:04:56 +0200
commite7464db8d3ba31a1707af9321295699d17fff19f (patch)
treeb9d8545c4885ea89a9131b92becd48b5cb00447f /inc/parser
parentfbdf49cba0656f3094181446edfc446b28e6b137 (diff)
downloadrpg-e7464db8d3ba31a1707af9321295699d17fff19f.tar.gz
rpg-e7464db8d3ba31a1707af9321295699d17fff19f.tar.bz2
fix for multiply entity #457
darcs-hash:20050713180456-9977f-77e5f03775df3deae67361cca89fdf454118f093.gz
Diffstat (limited to 'inc/parser')
-rw-r--r--inc/parser/parser.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/parser.php b/inc/parser/parser.php
index 0af0a7108..b1cae471d 100644
--- a/inc/parser/parser.php
+++ b/inc/parser/parser.php
@@ -744,7 +744,7 @@ class Doku_Parser_Mode_multiplyentity extends Doku_Parser_Mode {
function connectTo($mode) {
$this->Lexer->addSpecialPattern(
- '(?<=\b)\d+[x|X]\d+(?=\b)',$mode,'multiplyentity'
+ '(?<=\b)\d+[xX]\d+(?=\b)',$mode,'multiplyentity'
);
}