From 673b988206760a3c7c3f7eb9200c4387c52e01bf Mon Sep 17 00:00:00 2001 From: spiderr Date: Wed, 6 Jun 2012 16:22:38 -0400 Subject: pass by reference fixed --- BitBoard.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BitBoard.php b/BitBoard.php index 05dba32..3213e65 100644 --- a/BitBoard.php +++ b/BitBoard.php @@ -620,7 +620,8 @@ WHERE map.`board_content_id`=lc.`content_id` AND ((s_lc.`user_id` < 0) AND (s.`i $topicRootId = (int)$seq[0]; if( BitBase::verifyId( $topicRootId )) { require_once( BOARDS_PKG_PATH.'BitBoardTopic.php' ); - $ret = BitBoardTopic::getDisplayUrlFromHash( array( 'topic_id' => $topicRootId ) ); + $hash = array( 'topic_id' => $topicRootId ); + $ret = BitBoardTopic::getDisplayUrlFromHash( $hash ); // we're out of here with our topic url return $ret; } -- cgit v1.3