Minor fix to avoid HouseKeeping throwing message errors

Housekeeping - Process to delete historic information - ID: 2074600
http://sourceforge.net/support/tracker.php?aid=2074600
This commit is contained in:
Carlos Ruiz 2012-03-03 18:51:22 -05:00
parent f958219a71
commit 75d7c4f277
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ public class HouseKeeping extends SvrProcess{
houseKeeping.setLastDeleted(nodel); houseKeeping.setLastDeleted(nodel);
houseKeeping.saveEx(); houseKeeping.saveEx();
addLog("@Deleted@ " + nodel); addLog("@Deleted@ " + nodel);
String msg = Msg.translate(getCtx(), tableName + "_ID") + " #" + nodel; String msg = Msg.getElement(getCtx(), tableName + "_ID") + " #" + nodel;
return msg; return msg;
}//doIt }//doIt
} }