Page 1 of 1

Miscellaneous "bugs"

Posted: Mon Dec 02, 2013 9:51 am
by sulfur
This is for misc bugs or problems. Small stuff that's too tiny for their own separate discussions.

In the github repository, under tmp/cache, there needs to be a 'queries' directory with an 'empty' file in it.

Re: Miscellaneous "bugs"

Posted: Tue Dec 03, 2013 2:53 pm
by sulfur
Another small issue that crops up on my home machine...

app_controller.php line 712 (or so):

Code: Select all

			$this->_addMenuItem ('List All', array('controller' => 'people'), 'Players');
If you're in one of the player menus, this seems to make the "List All" default to using the same entry that you're already on. Changing it to:

Code: Select all

			$this->_addMenuItem ('List All', array('controller' => 'people', 'action' => 'index'), 'Players');
Fixes that issue and gives it the "list all" method all the time.

Re: Miscellaneous "bugs"

Posted: Wed Dec 04, 2013 7:25 pm
by GregS
Both fixed now in Github. Thanks!

Re: Miscellaneous "bugs"

Posted: Sat Feb 01, 2014 2:05 pm
by vrehorst
Here's another miscellaneous bug.

Creating a new division within a league kept on failing for me with no useful error message. (Well, it said "check the errors below" but no such errors were highlighted).

The problem was that the Scoring -> Email after and Scoring -> Finalize after fields were empty, and in the division table schema the corresponding columns are declared NOT NULL. The fields themselves weren't marked as being required, and they should probably have the default value of 0.

I'm planning on forking this so we'll see who fixes this one first :D

Re: Miscellaneous "bugs"

Posted: Sat Feb 01, 2014 4:18 pm
by GregS
Wonder how that one slipped through the cracks for so long? Fixed.