Page 1 of 1

Possible bug........ :?

Posted: Mon Dec 28, 2009 1:01 pm
by asdasdg
I'm not sure if anyone else is experiencing the problem I am. In certin levels I am unable to pause, move, and aim unless using auto aim and mouse move. That gets annoying to be unable to pause so I can't leave the computer. Here is an example of such a level. Again, the bug may only be on my computer but it is ocurring on both of our computers.

Re: Possible bug........ :?

Posted: Tue Dec 29, 2009 8:29 pm
by MD
That level works for me. It might just be you, though that is odd that it happens on both your computers.

~MD

Re: Possible bug........ :?

Posted: Mon Mar 15, 2010 9:54 pm
by XxoriginxX
mine works fine too. did u accidentlally click off the page?

Re: Possible bug........ :?

Posted: Tue Mar 16, 2010 4:29 pm
by asdasdg
nope.
It only does it for some levels and not all the time.

Re: Possible bug........ :?

Posted: Sun Apr 04, 2010 11:57 am
by asdasdg
WHat about in the search area?

I was looking at a two page search/filter.
When I tried to go from page two (it had displayed page two) to page 1, it redirected me away from my search/filter to the first page of the gallery.
NO mater how I tried to move to the other page, it would just direct me to the first page in the gallery.
NOw, the only way I could get to the first page is to find a search string that has enough pages that it says "first" on the page buttons. page 1 appeard to be the only page that did this thing.

Please look into it.

Re: Possible bug........ :?

Posted: Sun Apr 04, 2010 1:28 pm
by MD
asdasdg12 wrote:WHat about in the search area?
You're absolutely right! The '1' link wasn't working, though any other number worked fine. It was an easy fix, see:

Code: Select all

$n = ($i == 0) ? '' : $i;
When it was going to the first page (the 0th page), the pagination library i was using decided to be smart and instead of putting a 0 in the url it would be leave it blank (hence the empty quotes '').

But that messes with my system, cause instead of sending you to:
http://zetaflow.skylogic.ca/game/levels/0/date/all/hi/
it would send you to:
http://zetaflow.skylogic.ca/game/levels/date/all/hi/
which is invalid and so would put you back into the default gallery

so all i had to do was change it to $n = $i;

Happy Easter!

~MD

Re: Possible bug........ :?

Posted: Sun Apr 04, 2010 2:46 pm
by asdasdg
Thanks MD!