v1.3.9h
I did a bugs forum search and did not get any hits on "search sidebox" so I will post this info for the next update. tpl_search.php has a logic error for determining the type of button to show in the search sidebox. The existing code is on Line 17
but the logic in the if block is ordered incorrectly and you get the opposite of your CSS setting. For instance, if CSS button is off you should get your template image button but you get CSS instead. The code can be changed to the following to fix.Code:if (strtolower(IMAGE_USE_CSS_BUTTONS) == 'yes')
Code:if (strtolower(IMAGE_USE_CSS_BUTTONS) != 'yes')


Reply With Quote
