Jake Vanderwerf
2026-02-10 51c04912dd82476e6dc7488d3c525f53dca670a7
=minor fix to edit form in CRUDSkeleton.php. Still need to determine why taxonomy fields aren't rendering
2 files modified
5 ■■■■ changed files
inc/meta/Form.php 2 ●●● patch | view | raw | blame | history
inc/ui/CRUDSkeleton.php 3 ●●●●● patch | view | raw | blame | history
inc/meta/Form.php
@@ -208,7 +208,7 @@
            return '';
        }
        protected static function buildInput(string $content):string
        public static function buildInput(string $content):string
        {
            return sprintf(
                '<div class="field-input-wrapper">
inc/ui/CRUDSkeleton.php
@@ -1705,6 +1705,7 @@
    }
    protected function getApplicableStatuses(string $prefix) {
        ob_start();
        foreach ($this->statuses as $status) {
            if ($status === 'all' || !array_key_exists($status, $this->allowedStatuses)) {
                continue;
@@ -1734,5 +1735,7 @@
            </label>
            <?php
        }
        $out = ob_get_clean();
        echo Form::buildInput($out);
    }
}