2 afwas Apr 29, 2008 01:34

This bug lived all the way from 1.6 through 2.4.
First appearance: http://forums.b2evolution.net/viewtopic.php?t=9750
Second appearance: http://forums.b2evolution.net//viewtopic.php?t=14539
Description:
It is possible to select multiple categories for view. In the 1.x.x system it needed an extra line in the skin ($params array for Categories)
'form' => true,
in 2.4 it is a setting in the Categories widget. It generates selection boxes before the categories and radiobuttons for ANY ANY BUT and ALL selection. What is omittesd is the start of the <form> tag and the submit button plus the closing </form> tag.
Solution :
For both the 1.10 series as the 2.4 series I made a hack which consists of this code before the category list:
/blog/inc/widgets/widgets/_coll_category_list.widget.php
*edit*
This piece is edited from the previous entry here.
changed $bblogUrl = $Blog->dget( 'blogurl', 'raw' ); in $bblogUrl = $Blog->gen_blogurl(); and changed method="get" in method="post"
// start First part of Add Missing SubmitButton hack by Afwas
if( $this->disp_params['use_form'] )
{ // We want to add form fields:
$bblogUrl = $Blog->gen_blogurl();
echo'<form action="'.$bblogUrl.'" method="post">';
}
// end first part of hack
and this codepiece after the category list:
<!-- Second part of Add Missing SubmitButton hack by Afwas -->
<br /><br />
<input name="submit" class="submit" value="Get selection" type="submit">
</form>
<!-- End hack by Afwas -->
(This is taken from the 2.4 version, In 1.10 the $param is called 'form' and the global $Blog variable must be included.)
Also reported on Launchpad: https://bugs.edge.launchpad.net/b2evolution/+bug/194849
Solved with this plugin.
Unzip, install both plugins and place one before and one after the "Categories" widget.
Download: [url=http://www.blog.hemminga.net/media/blogs/plugins/_before_after_categories_plugin.zip]_before_after_categories_plugin.zip[/url].