remove all reference operator because with php5 pass by reference is the default...
[brisk.git] / web / briskin5 / Obj / placing.phh
index 81a4417..01ee168 100644 (file)
@@ -49,7 +49,7 @@ class Ptsgam {
     $this->gam = $gam;
   }
 
-  function &myclone()
+  function myclone()
   {
     $ret = new Ptsgam($this->username, $this->pts, $this->gam);
 
@@ -105,7 +105,7 @@ define(SUBTY_FREQ_LO, 0);
 define(SUBTY_FREQ_HI, 1);
 
 
-function placings_show(&$user) 
+function placings_show($user) 
 {
   $mtime = placing_time();
   $tm = placing_date($mtime);
@@ -177,7 +177,7 @@ function placing_date($mtime)
 }
   
 
-function placing_show_file(&$user, $ty, $subty) 
+function placing_show_file($user, $ty, $subty) 
 {
   $tail = FALSE;
 
@@ -251,7 +251,7 @@ function placing_show_file(&$user, $ty, $subty)
 //
 //
     
-function placing_show_pgsql(&$user, $ty, $subty) 
+function placing_show_pgsql($user, $ty, $subty) 
 {
     GLOBAL $G_dbpfx;
     
@@ -304,7 +304,7 @@ function placing_show_pgsql(&$user, $ty, $subty)
     return ($ret);
 }
 
-function placing_show(&$user, $ty, $subty) 
+function placing_show($user, $ty, $subty) 
 {
     GLOBAL $G_dbasetype;