From: Jens Frank Date: Sat, 6 Mar 2004 21:45:05 +0000 (+0000) Subject: disable RFC autolinking inside of [[links]] X-Git-Tag: 1.3.0beta1~855 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/exercices/bilan.php?a=commitdiff_plain;h=0cf007d5dce1aa71b8c484ca6450143bca2d223c;p=lhc%2Fweb%2Fwiklou.git disable RFC autolinking inside of [[links]] --- 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 );