From: <var...@us...> - 2014-11-17 15:24:44
|
Revision: 9320 http://sourceforge.net/p/phpwiki/code/9320 Author: vargenau Date: 2014-11-17 15:24:36 +0000 (Mon, 17 Nov 2014) Log Message: ----------- PHP Doc Modified Paths: -------------- trunk/lib/WysiwygEdit.php Modified: trunk/lib/WysiwygEdit.php =================================================================== --- trunk/lib/WysiwygEdit.php 2014-11-17 15:20:33 UTC (rev 9319) +++ trunk/lib/WysiwygEdit.php 2014-11-17 15:24:36 UTC (rev 9320) @@ -42,6 +42,7 @@ * *text* => '<b>text<b>' * * @param $text + * @return string */ function ConvertBefore($text) { @@ -58,6 +59,7 @@ * TODO: Switch over to HtmlParser * * @param $text + * @return string */ function ConvertAfter($text) { @@ -95,6 +97,7 @@ case 'em': return "_" . $body . "_"; } + return ''; } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |