Changeset 205 for trunk/blocks
- Timestamp:
- May 7, 2009, 7:14:16 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/blocks/page_block.php
r195 r205 22 22 $sort_order = empty( $options[3] ) ? 'asc' : $options[3] ; 23 23 $exclude = empty( $options[4] ) ? '' : $options[4] ; 24 $exclude_tree = !is_numeric( $options[5] ) ? 0: $options[5] ;24 $exclude_tree = empty( $options[5] ) ? '' : $options[5] ; 25 25 $includes = empty( $options[6] ) ? '' : $options[6] ; 26 26 $depth = !is_numeric( $options[7] ) ? 0 : $options[7] ; … … 91 91 92 92 $form .= _MB_XP2_PAGE_EXCLUDE . " <input type='text' name='options[4]' value='" . $exclude . "' size ='60' /><br />\n"; 93 $form .= _MB_XP2_PAGE_EXCLUDE_TREE . " <input type='text' name='options[5]' value='" . $exclude_tree . "' size =' 8' /><br />\n";93 $form .= _MB_XP2_PAGE_EXCLUDE_TREE . " <input type='text' name='options[5]' value='" . $exclude_tree . "' size ='60' /><br />\n"; 94 94 $form .= _MB_XP2_PAGE_INCLUDE . " <input type='text' name='options[6]' value='" . $includes . "' size ='60' /><br />\n"; 95 95 $form .= _MB_XP2_PAGE_DEPTH . " <input type='text' name='options[7]' value='" . $depth . "' size ='8' /><br />";
Note: See TracChangeset
for help on using the changeset viewer.