rabin 7 months ago
parent
commit
1a443ebb03
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Database.php

+ 1 - 1
src/Database.php

@@ -3338,7 +3338,7 @@ class Database
         if (isset($data['cur_value'])) {
             if ($value == 'time') {
                 return $data['cur_value'] ? date('Y-m-d H:i', $data['cur_value']) : '-';
-            } elseif (!strstr($value, 'Dever::load') && !strstr($value, '&') && (strstr($value, '/') || strstr($value, '.'))) {
+            } elseif (!strstr($value, 'Dever') && !strstr($value, '&') && (strstr($value, '/') || strstr($value, '.'))) {
                 return $data['cur_value'] ? Dever::load($value, $data['cur_value']) : '-';
             }
         }