From bb250cb2529b4446d17b2e00db168b619ce88b0a Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 21 Nov 2006 17:01:54 +0000 Subject: [PATCH] Fixes for function renaming. --- campcaster/src/modules/htmlUI/var/ui_hubSearch.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/campcaster/src/modules/htmlUI/var/ui_hubSearch.class.php b/campcaster/src/modules/htmlUI/var/ui_hubSearch.class.php index 936c203ff..909c1712e 100644 --- a/campcaster/src/modules/htmlUI/var/ui_hubSearch.class.php +++ b/campcaster/src/modules/htmlUI/var/ui_hubSearch.class.php @@ -82,7 +82,7 @@ class uiHubSearch extends uiSearch { return FALSE; } foreach ($results['results'] as $rec) { - $tmpId = $this->Base->gb->_idFromGunid($rec["gunid"]); + $tmpId = $this->Base->gb->idFromGunid($rec["gunid"]); $this->results['items'][] = $this->Base->getMetaInfo($tmpId); } $this->results['cnt'] = $results['cnt']; @@ -105,7 +105,7 @@ class uiHubSearch extends uiSearch { $this->results['cnt'] = $results['cnt']; foreach ($results['results'] as $rec) { // TODO: maybe this getMetaInfo is not correct for the remote results - $this->results['items'][] = $this->Base->getMetaInfo($this->Base->gb->_idFromGunid($rec)); + $this->results['items'][] = $this->Base->getMetaInfo($this->Base->gb->idFromGunid($rec)); } $this->pagination($results); //echo 'this->results:'; print_r($this->results); echo "\n";