math.pow was deprecated in lua-5.3 in favour of the ^ operator: https://www.lua.org/manual/5.3/manual.html#8.2 Resolves: rhbz#2280091epel10
parent
8ec5a0c653
commit
9ff5b8688c
@ -0,0 +1,11 @@
|
|||||||
|
--- ./share/lua/intf/modules/httprequests.lua.Orig 2023-08-05 06:03:51.000000000 -0400
|
||||||
|
+++ ./share/lua/intf/modules/httprequests.lua 2024-05-28 14:02:41.569002601 -0400
|
||||||
|
@@ -34,7 +34,7 @@
|
||||||
|
what = common.us_tonumber(what)
|
||||||
|
end
|
||||||
|
if type(what) == "number" then
|
||||||
|
- return math.floor(what*math.pow(10,precision)+0.5) / math.pow(10,precision)
|
||||||
|
+ return math.floor(what*(10^precision)+0.5) / (10^precision)
|
||||||
|
end
|
||||||
|
return nil
|
||||||
|
end
|
Loading…
Reference in new issue