Missed a spot with the date column for group bans

I'm thinking of putting a setting here instead of hardcoding the date format, actually, but for now this is good enough.
This commit is contained in:
Inusaito Sayori
2014-08-11 14:36:37 -04:00
parent a6ac8e1f71
commit 2deba06212

View File

@@ -3048,7 +3048,7 @@ void LLPanelGroupBanListSubTab::populateBanList()
ban_entry.columns.add().column("name").font/*.name*/("SANSSERIF_SMALL").font_style("NORMAL"); ban_entry.columns.add().column("name").font/*.name*/("SANSSERIF_SMALL").font_style("NORMAL");
// Singu Note: We have special date columns, so our code is unique here // Singu Note: We have special date columns, so our code is unique here
ban_entry.columns.add().column("ban_date").value(bd.mBanDate).format("%Y/%m%d").font/*.name*/("SANSSERIF_SMALL").font_style("NORMAL"); ban_entry.columns.add().column("ban_date").value(bd.mBanDate).type("date").format("%Y/%m%d").font/*.name*/("SANSSERIF_SMALL").font_style("NORMAL");
mBanList->addNameItemRow(ban_entry); mBanList->addNameItemRow(ban_entry);
} }