Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public partial class History : System.Web.UI.Page
protected void Page_Load(object sender, EventArgs e)
{
Bank bank = BankProvider.Instance.GetBank(this.Application, true, true);
BankUser user = bank.GetUserByLogin(Page.User.Identity.Name);
BankUser user = bank.GetUserByLogin(Page.User.Identity.Name);

Check warning

Code scanning / dotTEST

Use spaces for tabs/indentation

Add 2 or remove 2 spaces

string accountNumber = Request["account"];
if (accountNumber != null)
Expand Down