AronGahagan / cpt-dev

Code repository for the ClearPlan Toolbar
https://www.ClearPlanConsulting.com
3 stars 1 forks source link

cptSetup - install error - cptGetSetting does not yet exist #352

Closed AronGahagan closed 10 months ago

AronGahagan commented 10 months ago

Problem:

Upon initial install, only the cptSetup_bas module exists. The cptGetErrorTrapping() function which lives (properly) in cptSetup_bas calls cptGetSetting() which lives (improperly) in cptCore_bas which (at this point in the install process) does not yet exist.

Solution:

The cptSetup_bas module must make no outside calls. Either: a) remove cptGetSetting() from cptSetup_bas; or b) move 'cptGetSetting()tocptSetup_bas`.

Todo: