The recent update changed the behaviour of this page:
Code: Select all
http://www.purebasic.fr/english/search.php
Code: Select all
Display results as: (*) Posts () Topics
Could be possible to restore the original settings ? I found more logical the default to Topics as it return less rows and one can click the wanted thread to examine in detail the contents. The Posts choice in contrast returns a lot of data very often not pertinent or simply redundant.
Now I have to remember every time to click on the other option.
Can I have the search function as it was before ?
Thank you
This is for the request. But since I'm not the type who rely exclusively on other people's work I found a solution for myself and it's based on the Greasemonkey addon for Firefox.
So I wrote a script that change the new default to my preferred choice every time I enter in the search page.
If someone else is suffering like myself for all this, here is the script for you:
Code: Select all
// ==UserScript==
// @name PB forum FIX
// @namespace http://luis.no-ip.net
// @description Fix for the search options in the new PB forum
// @include http://www.purebasic.fr/english/search.php
// ==/UserScript==
(function () {
if (!document.getElementsByName('sr')) return;
var items = document.getElementsByName('sr');
for (var k = 0; k < items.length; k++) {
if (items[k].value == 'posts') {
items[k].checked = '';
}
if (items[k].value == 'topics') {
items[k].checked = 'checked';
}
}
})();