diff options
| author | Nick Palmer <nick@sluggardy.net> | 2007-03-04 14:03:42 +0000 |
|---|---|---|
| committer | Nick Palmer <nick@sluggardy.net> | 2007-03-04 14:03:42 +0000 |
| commit | 00613a642f9f88969f0a8cbfda5672b601ddba15 (patch) | |
| tree | f526921bac87dd84489fa8625102ca824c30a3a3 | |
| parent | 3d45e27e478ddaa8859941d5bd953902d3808528 (diff) | |
| download | pigeonholes-00613a642f9f88969f0a8cbfda5672b601ddba15.tar.gz pigeonholes-00613a642f9f88969f0a8cbfda5672b601ddba15.tar.bz2 pigeonholes-00613a642f9f88969f0a8cbfda5672b601ddba15.zip | |
Swap default for assign content back to what it was.
| -rw-r--r-- | admin/admin_pigeonholes_inc.php | 6 | ||||
| -rw-r--r-- | templates/assign_content.tpl | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/admin/admin_pigeonholes_inc.php b/admin/admin_pigeonholes_inc.php index 46a1fbe..4003f04 100644 --- a/admin/admin_pigeonholes_inc.php +++ b/admin/admin_pigeonholes_inc.php @@ -1,5 +1,5 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_pigeonholes/admin/admin_pigeonholes_inc.php,v 1.14 2007/03/03 21:19:53 nickpalmer Exp $ +// $Header: /cvsroot/bitweaver/_bit_pigeonholes/admin/admin_pigeonholes_inc.php,v 1.15 2007/03/04 14:03:40 nickpalmer Exp $ $pigeonholeDisplaySettings = array( 'pigeonholes_display_path' => array( @@ -31,8 +31,8 @@ $pigeonholeDisplaySettings = array( 'note' => 'Limit category access to specific groups. Group settings are inhertied by child categories.', ), 'reverse_assign_table' => array( - 'label' => 'Assign Categories in Columns', - 'note' => 'The assign categories page will have categories in columns instead of rows and content in rows instead of columns. This is better if you have only a few categories that can fit on a single page easily.', + 'label' => 'Assign Categories in Rows', + 'note' => 'The assign categories page will have categories in rows instead of columns and content in columns instead of rows. This is better if you have lots of categories that do not fit on a single page easily.', ), ); $gBitSmarty->assign( 'pigeonholeDisplaySettings', $pigeonholeDisplaySettings ); diff --git a/templates/assign_content.tpl b/templates/assign_content.tpl index d019cc9..0b6d429 100644 --- a/templates/assign_content.tpl +++ b/templates/assign_content.tpl @@ -16,7 +16,7 @@ {forminput} <select name="max_records"> <option value="10" {if $smarty.request.max_records eq 10 or !$smarty.request.max_rows}selected="selected"{/if}>10</option> - {if $gBitSystem->isFeatureActive('reverse_assign_table')} + {if !$gBitSystem->isFeatureActive('reverse_assign_table')} <option value="50" {if $smarty.request.max_records eq 50}selected="selected"{/if}>50</option> <option value="100" {if $smarty.request.max_records eq 100}selected="selected"{/if}>100</option> <option value="200" {if $smarty.request.max_records eq 200}selected="selected"{/if}>200</option> @@ -75,7 +75,7 @@ {formfeedback warning="Using this insertion method will reset any custom sorting you have done so far."} {/if} - {if !$gBitSystem->isFeatureActive('reverse_assign_table')} + {if $gBitSystem->isFeatureActive('reverse_assign_table')} {foreach from=$assignableContent item=item} <dl> <dt>{counter name=dogEatsPigeon}</dt> |
