2011-02-06, 00:53:17
Oleg06 Wrote:what does this line http://neowebtime.ru/01/news-i18n
Code:Warning: Division by zero in /home/cp068800/public_html/neowebtime.ru/01/plugins/i18n_search.php on line 395
as a calendar display as 03/02/2001 15.44
The call syntax changed in the last release of the search plugin and you probably still use the old one. If you used something like
Code:
get_i18n_search_results(searchTags, searchWords, notfoundText, dateFormat, maxItemsToDisplay, numberOfExcerptWords)
you must now use
Code:
set_i18n_search_texts(searchbuttonText, notfoundText, dateFormat);
get_i18n_search_results(searchTags, searchWords, indexOfFirstItemToDisplay, maxItemsToDisplay, numerOfExcerptWords);
where searchTags and searchWords are normally null to be taken from the request and indexOfFirstItemToDisplay should be null if you want paging.