From 0cf007d5dce1aa71b8c484ca6450143bca2d223c Mon Sep 17 00:00:00 2001 From: Jens Frank Date: Sat, 6 Mar 2004 21:45:05 +0000 Subject: [PATCH] disable RFC autolinking inside of [[links]] --- includes/Parser.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/includes/Parser.php b/includes/Parser.php index 98c0d55828..c0b6efac47 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -655,7 +655,11 @@ class Parser $txt=""; break; case "RFC ": - $txt = $this->doMagicRFC( $tokenizer ); + if ( $tagIsOpen ) { + $txt = "RFC "; + } else { + $txt = $this->doMagicRFC( $tokenizer ); + } break; case "ISBN ": $txt = $this->doMagicISBN( $tokenizer ); -- 2.20.1