From: Jens Frank Date: Sat, 6 Mar 2004 21:51:58 +0000 (+0000) Subject: ISBN links disabled insides of [[link]]s, too, upon brions request X-Git-Tag: 1.3.0beta1~854 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=15abb33eed2e955d8c8770f7b8f64977ef1bf209;p=lhc%2Fweb%2Fwiklou.git ISBN links disabled insides of [[link]]s, too, upon brions request --- diff --git a/includes/Parser.php b/includes/Parser.php index c0b6efac47..4dbc77f500 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -662,7 +662,11 @@ class Parser } break; case "ISBN ": - $txt = $this->doMagicISBN( $tokenizer ); + if ( $tagIsOpen ) { + $txt = "ISBN "; + } else { + $txt = $this->doMagicISBN( $tokenizer ); + } break; default: # Call language specific Hook.