kevin_zhangl il y a 3 ans
Parent
commit
c96e962d01
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      common/helpers/user/Info.php

+ 1 - 1
common/helpers/user/Info.php

@@ -622,7 +622,7 @@ class Info {
      * @return array|null
      */
     public static function getLastInfo($userId){
-        $data = User::findOneAsArray('ID=:ID', [':ID' => $userId], 'LAST_DEC_LV AS DEC_LV,EMP_LV,STATUS,CROWN_LV AS LAST_CROWN_LV');
+        $data = User::findOneAsArray('ID=:ID', [':ID' => $userId], 'LAST_DEC_LV AS DEC_LV,EMP_LV,LAST_EMP_LV,STATUS,CROWN_LV,LAST_CROWN_LV');
         return $data;
     }