mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 23:00:56 +01:00
fix PHP Warning: A non-numeric value encountered
This commit is contained in:
parent
58169abad0
commit
180c07e23c
@ -654,7 +654,7 @@ class Widget
|
|||||||
}
|
}
|
||||||
if (!is_numeric($c)) $c = self::chrs2num($c);
|
if (!is_numeric($c)) $c = self::chrs2num($c);
|
||||||
$col = self::num2chrs($c-1); // $c-1 to get: 0:'@', 1:'A', ...
|
$col = self::num2chrs($c-1); // $c-1 to get: 0:'@', 1:'A', ...
|
||||||
$col_ = self::num2chrs($c_-1);
|
if (is_numeric($c_)) $col_ = self::num2chrs($c_-1);
|
||||||
$row_cont = $cont[$row];
|
$row_cont = $cont[$row];
|
||||||
$col_row_cont = $cont[$col.$row];
|
$col_row_cont = $cont[$col.$row];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user