summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2008-07-29 18:04:23 +0000
committerLester Caine <lester@lsces.co.uk>2008-07-29 18:04:23 +0000
commite9f6f358ef2d5707df11cba9277ef6b277399843 (patch)
treec28b99bbb7054681acf5cc5285d055765f618259 /modules
parentcbe1ba461faf9d6b6e343cc7b7ddf9633d2a711f (diff)
downloadliberty-e9f6f358ef2d5707df11cba9277ef6b277399843.tar.gz
liberty-e9f6f358ef2d5707df11cba9277ef6b277399843.tar.bz2
liberty-e9f6f358ef2d5707df11cba9277ef6b277399843.zip
Use results from getContentList directly
Diffstat (limited to 'modules')
-rw-r--r--modules/mod_last_changes.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/mod_last_changes.php b/modules/mod_last_changes.php
index ef840ad..4219c13 100644
--- a/modules/mod_last_changes.php
+++ b/modules/mod_last_changes.php
@@ -1,6 +1,6 @@
<?php
/**
- * @version $Header: /cvsroot/bitweaver/_bit_liberty/modules/mod_last_changes.php,v 1.11 2007/04/02 18:55:00 squareing Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_liberty/modules/mod_last_changes.php,v 1.12 2008/07/29 18:04:23 lsces Exp $
* @package liberty
* @subpackage modules
* Params:
@@ -42,5 +42,5 @@ $listHash = array(
'user_id' => $userId,
);
$modLastContent = $gBitUser->getContentList( $listHash );
-$gBitSmarty->assign_by_ref( 'modLastContent', $modLastContent['data'] );
+$gBitSmarty->assign_by_ref( 'modLastContent', $modLastContent );
?>