From: <var...@us...> - 2021-09-20 09:09:58
|
Revision: 10574 http://sourceforge.net/p/phpwiki/code/10574 Author: vargenau Date: 2021-09-20 09:09:55 +0000 (Mon, 20 Sep 2021) Log Message: ----------- Remove useless semicolon Modified Paths: -------------- trunk/lib/WikiTheme.php trunk/lib/plugin/TexToPng.php trunk/lib/plugin/WhoIsOnline.php trunk/lib/wikilens/Buddy.php Modified: trunk/lib/WikiTheme.php =================================================================== --- trunk/lib/WikiTheme.php 2021-09-20 08:23:20 UTC (rev 10573) +++ trunk/lib/WikiTheme.php 2021-09-20 09:09:55 UTC (rev 10574) @@ -1689,7 +1689,7 @@ */ function CbUserLogin(&$request, $userid) { - ; // do nothing + // do nothing } /* @@ -1698,7 +1698,7 @@ */ function CbNewUserEdit(&$request, $userid) { - ; // i.e. create homepage with Template/UserPage + // i.e. create homepage with Template/UserPage } /* @@ -1710,7 +1710,7 @@ */ function CbNewUserLogin(&$request, $userid) { - ; // do nothing + // do nothing } /* @@ -1719,7 +1719,7 @@ */ function CbUserLogout(&$request, $userid) { - ; // do nothing + // do nothing } } Modified: trunk/lib/plugin/TexToPng.php =================================================================== --- trunk/lib/plugin/TexToPng.php 2021-09-20 08:23:20 UTC (rev 10573) +++ trunk/lib/plugin/TexToPng.php 2021-09-20 09:09:55 UTC (rev 10574) @@ -222,7 +222,6 @@ if (!$complainvisibly) { $this->dbg('Error during execution of ' . $cmd); } - ; foreach ($errortxt as $key => $value) { if ($complainvisibly) { $this->complain($value . "\n"); Modified: trunk/lib/plugin/WhoIsOnline.php =================================================================== --- trunk/lib/plugin/WhoIsOnline.php 2021-09-20 08:23:20 UTC (rev 10573) +++ trunk/lib/plugin/WhoIsOnline.php 2021-09-20 09:09:55 UTC (rev 10574) @@ -98,7 +98,6 @@ function getSessions($dbi, &$request) { // check the current user sessions and what they are doing - ; } // check the current sessions Modified: trunk/lib/wikilens/Buddy.php =================================================================== --- trunk/lib/wikilens/Buddy.php 2021-09-20 08:23:20 UTC (rev 10573) +++ trunk/lib/wikilens/Buddy.php 2021-09-20 09:09:55 UTC (rev 10574) @@ -77,7 +77,6 @@ $result = $dbh->_dbh->query($query); } else { // from 10 random raters of this page (non-SQL) - ; } } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |