Quote:
Originally Posted by Saber
Thank you about that, but i don't know how to use the tips you gave me. The truth is that i don't undarstand nothing about PHP i was under the impression that this is finished system. I didn't know i would have to do work on it. I know the code is old, but i think it would not make problem for me. But as i said, i don't know PHP i don't know how to do what you are saying. Is there absolutely no chance for you to make this work, to repair the code ?
|
I won't rewrite it, but it would be easy to patch it to work properly. Simply search and replace this:
$HTTP_GET_VARS and replace with
$_GET, and then right before
make_next_previous_with_number( $from, $SQL, $this_file_name, $get_vars ,$display_nr); add this:
PHP Code:
$aQS = $_GET;
unset($aQS['from']);
$get_vars = http_build_query($aQS);
And that looks like it should pass the querystring properly.