From 32864e955ac6e0ed6b34dc6a996ebd8a820c8f50 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sat, 12 May 2007 10:12:41 +0000 Subject: [PATCH] "calling the static method static seems to work more relyable in php5.2" --- etemplate/inc/class.boetemplate.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etemplate/inc/class.boetemplate.inc.php b/etemplate/inc/class.boetemplate.inc.php index ed3e8713fd..3411ec8a28 100644 --- a/etemplate/inc/class.boetemplate.inc.php +++ b/etemplate/inc/class.boetemplate.inc.php @@ -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];