From: <var...@us...> - 2021-09-20 10:41:06
|
Revision: 10587 http://sourceforge.net/p/phpwiki/code/10587 Author: vargenau Date: 2021-09-20 10:41:03 +0000 (Mon, 20 Sep 2021) Log Message: ----------- Remove useless local variable Modified Paths: -------------- trunk/lib/WysiwygEdit.php Modified: trunk/lib/WysiwygEdit.php =================================================================== --- trunk/lib/WysiwygEdit.php 2021-09-20 10:37:42 UTC (rev 10586) +++ trunk/lib/WysiwygEdit.php 2021-09-20 10:41:03 UTC (rev 10587) @@ -94,8 +94,7 @@ if (empty($trfm)) { $trfm = new HtmlTransformer($this->_transformer_tags); } - $markup = $trfm->parse($text); // version 2.0 - return $markup; + return $trfm->parse($text); } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |