From cba73b395bcdd1578de6612e2d015e5170a654e7 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Fri, 30 Nov 2007 13:31:49 -0500 Subject: [PATCH] Renaming Api->objdata to be Api->record * Api.php --- Api.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Api.php b/Api.php index 7590789..099d5e5 100644 --- a/Api.php +++ b/Api.php @@ -118,7 +118,7 @@ abstract class BSApi * The object table row; a fetched row that represents this instance * @var array */ - public $objdata = array(); + public $record = array(); /** * Insert ID from the insert() command @@ -309,7 +309,7 @@ abstract class BSApi $this->_runActionMethod('post_fetch', $doPost); - $this->objdata = $result; + $this->record = $result; return true; } -- 2.22.5