* Two new functions:
authorÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Tue, 13 Sep 2005 16:50:57 +0000 (16:50 +0000)
committerÆvar Arnfjörð Bjarmason <avar@users.mediawiki.org>
Tue, 13 Sep 2005 16:50:57 +0000 (16:50 +0000)
    function wfOpenElement( $element ) { return "<$element>"; }
    function wfCloseElement( $element ) { return "</$element>"; }

includes/GlobalFunctions.php

index e75920e..b971d90 100644 (file)
@@ -1274,6 +1274,10 @@ function wfElementClean( $element, $attribs = array(), $contents = '') {
        return wfElement( $element, $attribs, $contents );
 }
 
+// Shortcuts
+function wfOpenElement( $element ) { return "<$element>"; }
+function wfCloseElement( $element ) { return "</$element>"; }
+
 /**
  * Create a namespace selector
  *