]> git.mxchange.org Git - friendica-addons.git/commitdiff
[smileybutton] Add explicit conversion from float to int
authorHypolite Petovan <hypolite@mrpetovan.com>
Fri, 20 Oct 2023 15:50:31 +0000 (17:50 +0200)
committerheluecht <heluecht@noreply.git.friendi.ca>
Sun, 29 Oct 2023 11:40:31 +0000 (12:40 +0100)
Address part of https://github.com/friendica/friendica/issues/13157#issuecomment-1771572442

smileybutton/smileybutton.php

index fc20888f1a200b0fbc3ef21522ca1864a10e2765..1df717b72eab12d6deebc594682ae28042b4d89d 100644 (file)
@@ -90,7 +90,7 @@ function smileybutton_jot_tool(string &$body)
        for ($x = 0; $x < count($params['texts']); $x++) {
                $icon = $params['icons'][$x];
                $s .= '<td onclick="smileybutton_addsmiley(\'' . $params['texts'][$x] . '\')">' . $icon . '</td>';
-               if (($x + 1) % (sqrt(count($params['texts'])) + 1) == 0) {
+               if (($x + 1) % (floor(sqrt(count($params['texts']))) + 1) == 0) {
                        $s .= '</tr><tr>';
                }
        }