Totally Zenned
- Join Date:
- Nov 2003
- Posts:
- 1,878
- Plugin Contributions:
- 5
Quick Updates plugin [support]
craftzombie:
One more thing though (as if you didn't have enough on your plate already) is that I can't get the page to move to the next page when using the drop-down menu on the bottom. A previous closed thread mentioned turning register globals on, which they are, so any thoughts?Better turn register globals off again, unless you have to have to on for other reasons. Off is better for security! (if the code is free of errors/flaws it should not make any difference, but .......)
I tried, and noticed the problem (caused by me I suppose, oops ), an easy fix is to change this (assuming you're using the latest version posted in this thread):
if(isset($_GET['page']) && $_GET['page'] != '')
$page = (int)$_GET['page'];
To:
if(isset($_REQUEST['page']) && $_REQUEST['page'] != '')
$page = (int)$_REQUEST['page'];
```(that way both the page links, as the $_POST page switch are supported)
:laugh: :laugh: :laugh: on the love/stomach talk.
I can't promise anything about the feature requests, I would love (love again? :-) ) to do it all, but time is limited and I *really* need to get some other things done first. (and I am afraid I am a slow coder ;-) )