Miscellaneous "bugs"

Questions about modifications to Zuluru code, to add or change features
Post Reply
sulfur
Posts: 38
Joined: Fri Nov 08, 2013 3:08 pm
Location: Kingston, ON

Miscellaneous "bugs"

Post 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.
sulfur
Posts: 38
Joined: Fri Nov 08, 2013 3:08 pm
Location: Kingston, ON

Re: Miscellaneous "bugs"

Post 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.
GregS
Site Admin
Posts: 240
Joined: Thu Jan 06, 2011 4:58 pm

Re: Miscellaneous "bugs"

Post by GregS »

Both fixed now in Github. Thanks!
vrehorst
Posts: 5
Joined: Fri Jan 31, 2014 11:43 pm
Location: Whitby, Ontario, Canada
Contact:

Re: Miscellaneous "bugs"

Post 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
GregS
Site Admin
Posts: 240
Joined: Thu Jan 06, 2011 4:58 pm

Re: Miscellaneous "bugs"

Post by GregS »

Wonder how that one slipped through the cracks for so long? Fixed.
Post Reply