summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSylvie Greverend <sylvieg@users.sourceforge.net>2006-06-23 10:40:58 +0000
committerSylvie Greverend <sylvieg@users.sourceforge.net>2006-06-23 10:40:58 +0000
commit65aaf4f5308f6885ce52219e9401899cad138e5a (patch)
tree22e296b8ee7b7484cfc7a2bd3613e50f88aa9021
parent936f4695c70e171e72e98bfacac3b974bdf0a1f1 (diff)
downloadpigeonholes-65aaf4f5308f6885ce52219e9401899cad138e5a.tar.gz
pigeonholes-65aaf4f5308f6885ce52219e9401899cad138e5a.tar.bz2
pigeonholes-65aaf4f5308f6885ce52219e9401899cad138e5a.zip
fix syntax
-rw-r--r--edit_pigeonholes.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/edit_pigeonholes.php b/edit_pigeonholes.php
index 355b43b..28d5241 100644
--- a/edit_pigeonholes.php
+++ b/edit_pigeonholes.php
@@ -1,6 +1,6 @@
<?php
/**
- * $Header: /cvsroot/bitweaver/_bit_pigeonholes/edit_pigeonholes.php,v 1.21 2006/06/20 17:32:53 squareing Exp $
+ * $Header: /cvsroot/bitweaver/_bit_pigeonholes/edit_pigeonholes.php,v 1.22 2006/06/23 10:40:58 sylvieg 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: edit_pigeonholes.php,v 1.21 2006/06/20 17:32:53 squareing Exp $
+ * $Id: edit_pigeonholes.php,v 1.22 2006/06/23 10:40:58 sylvieg Exp $
* @package pigeonholes
* @subpackage functions
*/
@@ -158,9 +158,9 @@ $gBitSmarty->assign( 'contentTypes', $contentTypes );
$gBitSmarty->assign( 'contentSelect', $contentSelect );
$listHash = array(
- 'root_structure_id' => !empty( $gContent->mInfo['root_structure_id'] ) ? $gContent->mInfo['root_structure_id'] : NULL;
- 'force_extras' => TRUE;
- 'max_records' => -1;
+ 'root_structure_id' => !empty( $gContent->mInfo['root_structure_id'] ) ? $gContent->mInfo['root_structure_id'] : NULL,
+ 'force_extras' => TRUE,
+ 'max_records' => -1
);
$pigeonList = $gContent->getList( $listHash );
$gBitSmarty->assign( 'pigeonList', $pigeonList );