From: <var...@us...> - 2021-09-06 17:19:50
|
Revision: 10545 http://sourceforge.net/p/phpwiki/code/10545 Author: vargenau Date: 2021-09-06 17:19:47 +0000 (Mon, 06 Sep 2021) Log Message: ----------- Fix syntax error Modified Paths: -------------- trunk/lib/WikiDB/backend/PDO_mysql.php trunk/lib/WikiDB/backend/PDO_pgsql.php Modified: trunk/lib/WikiDB/backend/PDO_mysql.php =================================================================== --- trunk/lib/WikiDB/backend/PDO_mysql.php 2021-09-06 17:10:42 UTC (rev 10544) +++ trunk/lib/WikiDB/backend/PDO_mysql.php 2021-09-06 17:19:47 UTC (rev 10545) @@ -109,10 +109,10 @@ $limit = " LIMIT $from, $count"; } else { $limit = " LIMIT $count"; + } } else { $limit = ''; } return $limit; } - } Modified: trunk/lib/WikiDB/backend/PDO_pgsql.php =================================================================== --- trunk/lib/WikiDB/backend/PDO_pgsql.php 2021-09-06 17:10:42 UTC (rev 10544) +++ trunk/lib/WikiDB/backend/PDO_pgsql.php 2021-09-06 17:19:47 UTC (rev 10545) @@ -47,10 +47,10 @@ $limit = " LIMIT $count OFFSET $from"; } else { $limit = " LIMIT $count"; + } } else { $limit = ''; } return $limit; } - } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |