diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-02-16 13:48:11 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-02-16 13:48:11 +0000 |
| commit | 0e34bf081db5262999017f699238a88de85eb945 (patch) | |
| tree | cb1d8c2c426a562773b8715313c5873bad71b121 /LibertyComment.php | |
| parent | 27525bf2a3ea111d5642c95d95c46cc35c1cfbbc (diff) | |
| download | liberty-0e34bf081db5262999017f699238a88de85eb945.tar.gz liberty-0e34bf081db5262999017f699238a88de85eb945.tar.bz2 liberty-0e34bf081db5262999017f699238a88de85eb945.zip | |
new API for parseData(); please view ApiChangeLog for details
Diffstat (limited to 'LibertyComment.php')
| -rw-r--r-- | LibertyComment.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/LibertyComment.php b/LibertyComment.php index d78ae93..970b145 100644 --- a/LibertyComment.php +++ b/LibertyComment.php @@ -3,7 +3,7 @@ * Management of Liberty Content * * @package liberty - * @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertyComment.php,v 1.12 2006/02/13 01:31:46 jht001 Exp $ + * @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertyComment.php,v 1.13 2006/02/16 13:48:11 squareing Exp $ * @author spider <spider@steelsun.com> */ @@ -377,7 +377,7 @@ class LibertyComment extends LibertyContent { $comment->mInfo['level'] = $curLevel; $curLevel++; $comment->mInfo['children'] = $this->getComments_threaded($comment->mInfo['content_id']); - $comment->mInfo['parsed_data'] = $this->parseData($comment->mInfo['data'], $comment->mInfo['format_guid']); + $comment->mInfo['parsed_data'] = $this->parseData($comment->mInfo); $curLevel--; $ret[] = $comment->mInfo; } @@ -436,7 +436,7 @@ class LibertyComment extends LibertyContent { if ($rs && $rs->numRows()) { $rows = $rs->getRows(); foreach ($rows as $row) { - $row['parsed_data'] = $this->parseData($row['data'], $row['format_guid']); + $row['parsed_data'] = $this->parseData($row); $flat_comments[] = $row; } } |
