projects
/
friendica-addons.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c7e06bf
)
[smileybutton] Add explicit conversion from float to int
author
Hypolite Petovan
<hypolite@mrpetovan.com>
Fri, 20 Oct 2023 15:50:31 +0000
(17:50 +0200)
committer
heluecht
<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
patch
|
blob
|
history
diff --git
a/smileybutton/smileybutton.php
b/smileybutton/smileybutton.php
index fc20888f1a200b0fbc3ef21522ca1864a10e2765..1df717b72eab12d6deebc594682ae28042b4d89d 100644
(file)
--- a/
smileybutton/smileybutton.php
+++ b/
smileybutton/smileybutton.php
@@
-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>';
}
}