This has been happening for a while, and I’m finally reporting it π
Sometimes the right column on the news page (“Did you know…”, Recent posts, etc.) doesn’t appear. It usually comes back when I refresh, but its still mildly annoying…
I know you’re busy, but if you could take a look at it when you get a chance, that would be great.
it happens, for example, if you select another language while being on the frontpage. it’s one of the problems of the xoops system, so i had to hack it to fix that. it does not happen often, so i never bothered to look into it. anyone else finding it too annoying to not getting fixed? π
I use Opera 9.24, and I don’t go through the front page (I bookmarked the news page) so it isn’t the same problem, but could be related to it or to the hack.
with frontpage i meant the first page with news and blocks. but yeah, when logging in through the start page (www.vr32.de) the same happens, i think.
it’s probably the post vars interfering somehow?
found the problem, but in kernel/module.php, line 389.
if (preg_match(“/[^\?]*index\.php$/i”, $_SERVER[‘REQUEST_URI’]) && $xoopsConfig[‘startpage’] == $this->getVar(‘dirname’))
the preg_match makes the right hand column disappear when any get variable is attached to the address.
only removing the preg_match or the [^\?] from it would not work, because i don’t want the side bar show when reading articles for example, but only on the start page.
so now i only have to fully understand that logic to allow the ?lang variable. π does anyone have a link or keyword to search for?
EDIT: finally fixed this. π
This reply was modified 15 years, 8 months ago by KR155E.