rabin 1 년 전
부모
커밋
a77eb90f5c
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      lib/Log.php

+ 3 - 3
lib/Log.php

@@ -84,9 +84,9 @@ class Log
 
         $type = Dever::db('account/config_type')->one($info['type_id']);
         if ($type['type'] == 2) {
-            $info['ycash'] = -1*$info['ycash'];
-            $info['cash'] = -1*$info['cash'];
-            $info['fee'] = -1*$info['fee'];
+            $info['ycash'] = Dever::number(-1*$info['ycash']);
+            $info['cash'] = Dever::number(-1*$info['cash']);
+            $info['fee'] = Dever::number(-1*$info['fee']);
         }
         return $info;
     }