mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-06-20 01:48:01 +02:00
intval -> (int)
This commit is contained in:
parent
df474920e7
commit
5a63f7cfd0
@ -151,11 +151,11 @@
|
|||||||
$i*=10;
|
$i*=10;
|
||||||
}
|
}
|
||||||
|
|
||||||
$j=0;
|
$j = 0;
|
||||||
while ($i!=$j)
|
while($i != $j)
|
||||||
{
|
{
|
||||||
$k= $j+intval(($i-$j)/2);
|
$k = $j + (int)(($i-$j) / 2);
|
||||||
if (odbc_fetch_row($this->Query_ID, $k))
|
if(odbc_fetch_row($this->Query_ID, $k))
|
||||||
{
|
{
|
||||||
$j=$k;
|
$j=$k;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user