From f065b6389458f12d468744fb7db444321b8f08b6 Mon Sep 17 00:00:00 2001 From: moodler Date: Sun, 8 Jun 2003 11:25:45 +0000 Subject: [PATCH] Fixed pass-by-reference --- lib/psxlsgen.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/psxlsgen.php b/lib/psxlsgen.php index 45c030166e..12b4a0d251 100644 --- a/lib/psxlsgen.php +++ b/lib/psxlsgen.php @@ -105,7 +105,7 @@ if( !defined( "PHP_SIMPLE_XLS_GEN" ) ) { $this->ccol = 0; $this->crow++; } - $this->WriteNumber_pos( $this->crow, $this->ccol, &$value ); + $this->WriteNumber_pos( $this->crow, $this->ccol, $value ); $this->ccol++; return; } @@ -117,7 +117,7 @@ if( !defined( "PHP_SIMPLE_XLS_GEN" ) ) { $this->ccol = 0; $this->crow++; } - $this->WriteText_pos( $this->crow, $this->ccol, &$value ); + $this->WriteText_pos( $this->crow, $this->ccol, $value ); $this->ccol++; return; } -- 2.39.5