summaryrefslogtreecommitdiff
path: root/my.php
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2008-07-29 18:10:24 +0000
committerLester Caine <lester@lsces.co.uk>2008-07-29 18:10:24 +0000
commit25bde59d4c4288f9c29011a29fc5e14cef788fe5 (patch)
tree7ad2fa70220427e1d9b90b2b5dc776e2883ebcc7 /my.php
parentd7eb639f3c4c510d1318203b9515b09b008e3999 (diff)
downloadusers-25bde59d4c4288f9c29011a29fc5e14cef788fe5.tar.gz
users-25bde59d4c4288f9c29011a29fc5e14cef788fe5.tar.bz2
users-25bde59d4c4288f9c29011a29fc5e14cef788fe5.zip
Use results from getContentList directly
Diffstat (limited to 'my.php')
-rw-r--r--my.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/my.php b/my.php
index b8b9cad..823a111 100644
--- a/my.php
+++ b/my.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_users/my.php,v 1.18 2008/06/25 22:21:28 spiderr Exp $
+ * $Header: /cvsroot/bitweaver/_bit_users/my.php,v 1.19 2008/07/29 18:10:24 lsces Exp $
*
* Copyright (c) 2004 bitweaver.org
* Copyright (c) 2003 tikwiki.org
@@ -8,7 +8,7 @@
* All Rights Reserved. See copyright.txt for details and a complete list of authors.
* Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details
*
- * $Id: my.php,v 1.18 2008/06/25 22:21:28 spiderr Exp $
+ * $Id: my.php,v 1.19 2008/07/29 18:10:24 lsces Exp $
* @package users
* @subpackage functions
*/
@@ -48,15 +48,15 @@ if( $gBitSystem->isFeatureActive( 'display_users_content_list' ) ) {
include_once( LIBERTY_PKG_PATH.'get_content_list_inc.php' );
// calculate page number
- $numPages = ceil( $contentList['cant'] / $gBitSystem->getConfig( 'max_records' ) );
+ $numPages = ceil( $contentListHash['cant'] / $gBitSystem->getConfig( 'max_records' ) );
$gBitSmarty->assign( 'numPages', $numPages );
//$gBitSmarty->assign_by_ref('offset', $offset);
$gBitSmarty->assign( 'contentSelect', $contentSelect );
$gBitSmarty->assign( 'contentTypes', $contentTypes );
- $gBitSmarty->assign( 'contentList', $contentList['data'] );
- $gBitSmarty->assign( 'contentCount', $contentList['cant'] );
- $gBitSmarty->assign( 'listInfo', $contentList['listInfo'] );
+ $gBitSmarty->assign( 'contentList', $contentList );
+ $gBitSmarty->assign( 'contentCount', $contentListHash['cant'] );
+ $gBitSmarty->assign( 'listInfo', $contentListHash );
// end of content listing
}