]> git.mjollnir.org Git - moodle.git/commitdiff
Fixed pass-by-reference
authormoodler <moodler>
Sun, 8 Jun 2003 11:25:45 +0000 (11:25 +0000)
committermoodler <moodler>
Sun, 8 Jun 2003 11:25:45 +0000 (11:25 +0000)
lib/psxlsgen.php

index 45c030166e05256af534fdc5fd9ad2a804da7b3b..12b4a0d251fb6c0b0c56e0101a5be170cf97436f 100644 (file)
@@ -105,7 +105,7 @@ if( !defined( "PHP_SIMPLE_XLS_GEN" ) ) {
            $this->ccol = 0;\r
            $this->crow++;\r
         }\r
-        $this->WriteNumber_pos( $this->crow, $this->ccol, &$value );\r
+        $this->WriteNumber_pos( $this->crow, $this->ccol, $value );\r
         $this->ccol++;\r
         return;\r
      }\r
@@ -117,7 +117,7 @@ if( !defined( "PHP_SIMPLE_XLS_GEN" ) ) {
            $this->ccol = 0;\r
            $this->crow++;\r
         }\r
-        $this->WriteText_pos( $this->crow, $this->ccol, &$value );\r
+        $this->WriteText_pos( $this->crow, $this->ccol, $value );\r
         $this->ccol++;\r
         return;\r
      }\r