From: <var...@us...> - 2023-07-18 13:56:16
|
Revision: 11059 http://sourceforge.net/p/phpwiki/code/11059 Author: vargenau Date: 2023-07-18 13:56:14 +0000 (Tue, 18 Jul 2023) Log Message: ----------- lib/plugin/WikicreoleTable.php: compute_table_cell returns straing, not int Modified Paths: -------------- trunk/lib/plugin/WikicreoleTable.php Modified: trunk/lib/plugin/WikicreoleTable.php =================================================================== --- trunk/lib/plugin/WikicreoleTable.php 2023-07-18 10:28:12 UTC (rev 11058) +++ trunk/lib/plugin/WikicreoleTable.php 2023-07-18 13:56:14 UTC (rev 11059) @@ -191,9 +191,9 @@ * @param int $j: second index of cell to compute * @param int $imax: first table dimension * @param int $jmax: second table dimension - * @return int + * @return string */ - private function compute_table_cell(array $table, int $i, int $j, int $imax, int $jmax): int + private function compute_table_cell(array $table, int $i, int $j, int $imax, int $jmax): string { // What is implemented: This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |