In BSApi::fetch(), remove the code that populated BSApi->values[] with the objdata...
authorRobert Sesek <rsesek@bluestatic.org>
Wed, 13 Jun 2007 23:17:30 +0000 (23:17 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Wed, 13 Jun 2007 23:17:30 +0000 (23:17 +0000)
Api.php

diff --git a/Api.php b/Api.php
index b6f9004a6e4a7a192f0355741375681845777d6d..002e04d122097b63fa9d8ad4eb9324032dab9a3b 100644 (file)
--- a/Api.php
+++ b/Api.php
@@ -342,17 +342,6 @@ abstract class BSApi
                
                $this->objdata = $result;
                
-               if ($populate)
-               {
-                       foreach ($this->objdata AS $key => $value)
-                       {
-                               if (!isset($this->values["$key"]))
-                               {
-                                       $this->values["$key"] = $value;
-                               }
-                       }
-               }
-               
                return true;
        }