Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-09-20 | pad: Fix bug in function getStages() | Malf Furious | 1 | -0/+3 | |
In cases where the pad had no stages beneath it, `new stage($this->stage)` would construct an invalid object. As it turns out, calling ->getArray() on an uninitialized stage object yeilds bad results. Instead of patching the stage::getArray() function, I add a check to harden pad::getStages(). My reasoning for this is as follows: The bug in getArray() manifests from a domain error, ie. it's only because we are calling it on an uninitialized object. The object is already in a bad state prior to caling getArray(). Rather, I opt to patch getStages() so that we never create a bad object in the first place. Now, for no-stage pads, getStages() will return early an empty array. | |||||
2018-02-07 | Update class files to use renamed obj class | Malf Furious | 1 | -2/+2 | |
2017-04-09 | Fix bug in pad class | Malf Furious | 1 | -0/+1 | |
2017-04-09 | Add pad function getStages() | Malf Furious | 1 | -0/+10 | |
2017-04-09 | Add pad function insertStage() | Malf Furious | 1 | -0/+12 | |
2017-03-29 | Add pad class | Malf Furious | 1 | -0/+87 | |
2016-10-22 | Deprecate application code | Malf Furious | 1 | -40/+0 | |
Setup to perform an iteration of development focused on a simpler implementation and eliminating redundancy in design. | |||||
2016-05-26 | Add copyright notice to Scrott class files | Malf Furious | 1 | -0/+14 | |
2015-12-31 | + Added class file for Pad table | Malf Furious | 1 | -5/+5 | |
2015-12-30 | + Created class file for extern-user table | Malf Furious | 1 | -7/+3 | |
2015-12-30 | + Created db table child class for User table | Malf Furious | 1 | -0/+30 | |