summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTekimaki <tekimaki_admin@users.sourceforge.net>2009-01-28 21:29:10 +0000
committerTekimaki <tekimaki_admin@users.sourceforge.net>2009-01-28 21:29:10 +0000
commit465391a3f8114f57892c737016612ecc5f42a22f (patch)
treed1d92f845359704e7e7f28d0f0da893969f29e06
parent9dc47691c64c8950aa61cf42561c239102ec989f (diff)
downloadliberty-465391a3f8114f57892c737016612ecc5f42a22f.tar.gz
liberty-465391a3f8114f57892c737016612ecc5f42a22f.tar.bz2
liberty-465391a3f8114f57892c737016612ecc5f42a22f.zip
pass param hash by reference in services - utilized in _list_sql services to append values to listHash
-rw-r--r--LibertyContent.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibertyContent.php b/LibertyContent.php
index c0f10fa..8555d51 100644
--- a/LibertyContent.php
+++ b/LibertyContent.php
@@ -3,7 +3,7 @@
* Management of Liberty content
*
* @package liberty
-* @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertyContent.php,v 1.391 2009/01/24 15:30:57 spiderr Exp $
+* @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertyContent.php,v 1.392 2009/01/28 21:29:10 tekimaki_admin Exp $
* @author spider <spider@steelsun.com>
*/
@@ -1063,7 +1063,7 @@ class LibertyContent extends LibertyBase {
* Set up SQL strings for services used by the object
* TODO: set this function deprecated and eventually nuke it
*/
- function getServicesSql( $pServiceFunction, &$pSelectSql, &$pJoinSql, &$pWhereSql, &$pBindVars, $pObject = NULL, $pParamHash = NULL) {
+ function getServicesSql( $pServiceFunction, &$pSelectSql, &$pJoinSql, &$pWhereSql, &$pBindVars, $pObject = NULL, &$pParamHash = NULL ) {
//deprecated( 'You package is calling the deprecated LibertyContent::getServicesSql() method. Please update your code to use LibertyContent::getLibertySql' );
global $gLibertySystem;
if( $loadFuncs = $gLibertySystem->getServiceValues( $pServiceFunction ) ) {