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

Bug reports, suggestions, questions, etc that relate to the development of Zeta Flow and this website.
Post Reply
asdasdg
Posts: 240
Joined: Sun Dec 28, 2008 11:27 am
Contact:

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

Post 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.
MD
Site Admin
Posts: 195
Joined: Sun Aug 12, 2007 2:06 pm

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

Post by MD »

That level works for me. It might just be you, though that is odd that it happens on both your computers.

~MD
User avatar
XxoriginxX
Posts: 10
Joined: Sat Aug 08, 2009 10:09 pm
Location: Far away from you.

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

Post by XxoriginxX »

mine works fine too. did u accidentlally click off the page?
"A wise man can see more from the bottom of a well then a fool can from a mountain top."-Unknown
asdasdg
Posts: 240
Joined: Sun Dec 28, 2008 11:27 am
Contact:

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

Post by asdasdg »

nope.
It only does it for some levels and not all the time.
asdasdg
Posts: 240
Joined: Sun Dec 28, 2008 11:27 am
Contact:

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

Post 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.
MD
Site Admin
Posts: 195
Joined: Sun Aug 12, 2007 2:06 pm

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

Post 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
asdasdg
Posts: 240
Joined: Sun Dec 28, 2008 11:27 am
Contact:

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

Post by asdasdg »

Thanks MD!
Post Reply