瀏覽代碼

fixed null string error

tags/v1.0.2^0
Robin Thoni 9 年之前
父節點
當前提交
e82f96416d
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. 2
    2
      app/DataAccess/RoutesDataAccess.php

+ 2
- 2
app/DataAccess/RoutesDataAccess.php 查看文件

28
             $dbo = new RoutesDbo();
28
             $dbo = new RoutesDbo();
29
             $dbo->setId($route["id"]);
29
             $dbo->setId($route["id"]);
30
             $dbo->setName($route["name"]);
30
             $dbo->setName($route["name"]);
31
-            $dbo->setBgColor($route["color"]);
32
-            $dbo->setFgColor($route["text_color"]);
31
+            $dbo->setBgColor($route["color"] == null ? "#ffffff" : $route["color"]);
32
+            $dbo->setFgColor($route["text_color"] == null ? "#aa0000" : $route["text_color"]);
33
             $dbos[] = $dbo;
33
             $dbos[] = $dbo;
34
         }
34
         }
35
         return $dbos;
35
         return $dbos;

Loading…
取消
儲存