Jake Vanderwerf
2026-02-10 51c04912dd82476e6dc7488d3c525f53dca670a7
inc/ui/CRUDSkeleton.php
@@ -1576,7 +1576,6 @@
               $tabs = false;
            }
            $fields = $this->fields;
            if (!$this->isTimeline) {
               $first = ['post_thumbnail', 'post_title', 'price'];
@@ -1586,9 +1585,8 @@
                     if ($tabs) {
                        $tabs['basic']['content'] .= Form::render($f, '', $fields[$f]);
                     } else {
                        Form::render($f, '', $fields[$f]);
                        echo Form::render($f, '', $fields[$f]);
                     }
                     unset($fields[$f]);
                  }
               }
@@ -1629,7 +1627,7 @@
                  if (in_array($config['type'], ['taxonomy', 'selector'])) {
                     $config = array_merge($config, $this->taxConfig($config['taxonomy'], $config['label']));
                  }
                  Form::render($n, '', $config);
                  echo Form::render($n, '', $config);
               }
            }
@@ -1707,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;
@@ -1736,5 +1735,7 @@
         </label>
         <?php
      }
      $out = ob_get_clean();
      echo Form::buildInput($out);
   }
}