Increase the Search Box to Accept More than 20 Characters in Joomla 1.5
Written by Daniel Mundy
Tuesday, 28 April 2009 14:31
Edit the following two files accordingly to increase the search box size in Joomla 1.5.
components/com_search/views/search/tmpl/default_form.php:
<input type="text" name="searchword" id="search_searchword" size="30" maxlength="100" value="" class="inputbox" />
administrator/components/com_search/helpers/search.php
// limit searchword to 20 characters
if ( JString::strlen( $searchword ) > 100 ) {
$searchword = JString::substr( $searchword, 0, 99 );
$restriction = true;
}
Bookmark
Email this
Hits: 121
Trackback(0)
Comments (0)

Write comment
Last Updated on Sunday, 30 May 2010 08:45
Are you stuck?
This tech stuff isn't for everyone. If you'd rather just pay someone to fix it for you, email daniel@mundy.com.au.
I'll be happy to help you.

Daniel Mundy



