Topic: search problems

when i go to the search page of my website i'm getting the following result ...

http://neworder.box.sk/forum/search.html

any ideas?

if i go directly to the search page without the rewrite i'm getting the correct result ....

~Cereal
I've finally learned what "upward compatible" means. It means we get to keep all our old mistakes.
The limits of language are the limits of one's world.

Re: search problems

hmm
i found the code thats causing the problem ...

$query = array(
                                'SELECT'        => '*',
                                'FROM'          => 'cpages'
                        );
                        $result = $forum_db->query_build($query) or error(__FILE__, __LINE__);
                        while ( $item = $forum_db->fetch_assoc($result) ) {
                                $forum_rewrite_rules['/^'.$item['url'].'$/i'] = 'extensions/'.$ext_info['id'].'/page.php?p='.$item['id'];
                        }

its one of my own extensions, but i have no idea why this doesn't work ....

~Cereal
I've finally learned what "upward compatible" means. It means we get to keep all our old mistakes.
The limits of language are the limits of one's world.