songxingwei 2 年之前
父節點
當前提交
75d370de77
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      app/data/sys.php

+ 2 - 1
app/data/sys.php

@@ -53,11 +53,12 @@ if (!function_exists('show_goods_spec')) {
      */
     function show_goods_spec(string $spec): string
     {
-        if (is_null($spec)) return '';
+
         $specs = [];
         foreach (explode(';;', $spec) as $sp) {
             $specs[] = explode('::', $sp)[1];
         }
+        return 111;
         return join(' ', $specs);
     }
 }