|
From: <var...@us...> - 2021-09-20 10:13:25
|
Revision: 10584
http://sourceforge.net/p/phpwiki/code/10584
Author: vargenau
Date: 2021-09-20 10:13:23 +0000 (Mon, 20 Sep 2021)
Log Message:
-----------
Remove useless local variable
Modified Paths:
--------------
trunk/lib/HtmlParser.php
Modified: trunk/lib/HtmlParser.php
===================================================================
--- trunk/lib/HtmlParser.php 2021-09-20 10:11:20 UTC (rev 10583)
+++ trunk/lib/HtmlParser.php 2021-09-20 10:13:23 UTC (rev 10584)
@@ -72,8 +72,7 @@
{
if (is_null($this->root))
$this->root = $GLOBALS['xml_parser_root'];
- $output = $this->wikify($this->root);
- return $output;
+ return $this->wikify($this->root);
}
/**
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|