From c9b6b8b7b2f95392f1d08ee7a832b3a052d7b595 Mon Sep 17 00:00:00 2001 From: Dario Solera Date: Thu, 7 Jan 2010 08:00:29 +0000 Subject: [PATCH] Fixed and closed #446: Display Name textbox cleared after user creation. --- AssemblyVersion.cs | 4 ++-- WebApplication/AdminUsers.aspx.cs | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/AssemblyVersion.cs b/AssemblyVersion.cs index 3933002..d775854 100644 --- a/AssemblyVersion.cs +++ b/AssemblyVersion.cs @@ -16,5 +16,5 @@ using System.Reflection; // // You can specify all the values or you can default the Revision and Build Numbers // by using the '*' as shown below: -[assembly: AssemblyVersion("3.0.1.452")] -[assembly: AssemblyFileVersion("3.0.1.452")] +[assembly: AssemblyVersion("3.0.1.453")] +[assembly: AssemblyFileVersion("3.0.1.453")] diff --git a/WebApplication/AdminUsers.aspx.cs b/WebApplication/AdminUsers.aspx.cs index c889559..fb397e7 100644 --- a/WebApplication/AdminUsers.aspx.cs +++ b/WebApplication/AdminUsers.aspx.cs @@ -190,6 +190,7 @@ namespace ScrewTurn.Wiki { private void ResetEditor() { txtUsername.Text = ""; txtUsername.Enabled = true; + txtDisplayName.Text = ""; txtEmail.Text = ""; chkSetActive.Checked = true; providerSelector.Enabled = true;