summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorNick Palmer <nick@sluggardy.net>2007-06-08 00:30:09 +0000
committerNick Palmer <nick@sluggardy.net>2007-06-08 00:30:09 +0000
commit3db7f9fdb3ffabda833616639f1e783a2908ab64 (patch)
treef2e9c690f98578a4c266558828e216e89d58c2bf /modules
parentab7d56e56efdfee08ffacb67a11a188e235484d1 (diff)
downloadpigeonholes-3db7f9fdb3ffabda833616639f1e783a2908ab64.tar.gz
pigeonholes-3db7f9fdb3ffabda833616639f1e783a2908ab64.tar.bz2
pigeonholes-3db7f9fdb3ffabda833616639f1e783a2908ab64.zip
Fix category suckerfish so it works with new layouts system.
Diffstat (limited to 'modules')
-rw-r--r--modules/mod_category_suckerfish.php10
1 files changed, 7 insertions, 3 deletions
diff --git a/modules/mod_category_suckerfish.php b/modules/mod_category_suckerfish.php
index affe63b..e249d33 100644
--- a/modules/mod_category_suckerfish.php
+++ b/modules/mod_category_suckerfish.php
@@ -1,18 +1,22 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_pigeonholes/modules/mod_category_suckerfish.php,v 1.1 2007/04/05 22:17:34 nickpalmer Exp $
+ * $Header: /cvsroot/bitweaver/_bit_pigeonholes/modules/mod_category_suckerfish.php,v 1.2 2007/06/08 00:30:09 nickpalmer Exp $
*
* Copyright (c) 2007 bitweaver.org
*
* 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: mod_category_suckerfish.php,v 1.1 2007/04/05 22:17:34 nickpalmer Exp $
+ * $Id: mod_category_suckerfish.php,v 1.2 2007/06/08 00:30:09 nickpalmer Exp $
* @package pigeonholes
* @subpackage modules
*/
-global $gBitSmarty, $gQueryUserId, $gBitThemes, $module_rows, $module_params, $module_title, $gBitSystem;
+global $gBitSmarty, $gQueryUserId, $gBitThemes, $module_rows, $moduleParams, $gBitSystem;
+
+$module_rows = $moduleParams['module_rows'];
+$module_params = $moduleParams['module_params'];
+$module_title = $moduleParams['module_title'];
$gBitSmarty->assign( 'moduleTitle', isset($module_title) ? $module_title: 'Categories');