From 9135e6a7345919ac625de2e978b275ac37f12447 Mon Sep 17 00:00:00 2001 From: Matthew Date: Mon, 10 Jun 2024 19:22:30 -0400 Subject: [PATCH] Update syntax.php fix re-occuring error `E_WARNING: Undefined variable $attr/var/www/prwiki/lib/plugins/exttab3/syntax.php(106)` --- syntax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntax.php b/syntax.php index 4ee4d84..b788fd8 100644 --- a/syntax.php +++ b/syntax.php @@ -103,7 +103,7 @@ protected function open($tag, $attr, $pos, $match, $handler) protected function close($tag, $pos, $match, $handler) { //$this->writeCall($tag,'',DOKU_LEXER_EXIT, $pos,$match,$handler); - $match = array(DOKU_LEXER_EXIT, $tag, $attr); + $match = array(DOKU_LEXER_EXIT, $tag); $handler->plugin($match, 'addPluginCall', $pos, $this->getPluginName()); }