"calling the static method static seems to work more relyable in php5.2"

This commit is contained in:
Ralf Becker 2007-05-12 10:12:41 +00:00
parent f9d1b30d89
commit 32864e955a

View File

@ -157,8 +157,8 @@
$cont = array();
}
if (!is_numeric($c)) $c = boetemplate::chrs2num($c);
$col = $this->num2chrs($c-1); // $c-1 to get: 0:'@', 1:'A', ...
$col_ = $this->num2chrs($c_-1);
$col = boetemplate::num2chrs($c-1); // $c-1 to get: 0:'@', 1:'A', ...
$col_ = boetemplate::num2chrs($c_-1);
$row_cont = $cont[$row];
$col_row_cont = $cont[$col.$row];