mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-28 02:43:22 +01:00
fix PHP Warning: A non-numeric value encountered
This commit is contained in:
parent
9786a53987
commit
0065fbc25e
@ -622,7 +622,7 @@ class Widget
|
||||
}
|
||||
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);
|
||||
if (is_numeric($c_)) $col_ = self::num2chrs($c_-1);
|
||||
$row_cont = $cont[$row];
|
||||
$col_row_cont = $cont[$col.$row];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user