diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-25 15:09:49 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-03-25 15:09:49 -0700 |
commit | a20f97a9f5cab3870ee04882ed83a7f7918ee969 (patch) | |
tree | 5d9a7b19bcbd519d52a144df532ad46e8d201c95 /samples | |
parent | c801073081191a30de1be744d4f5a2b1baeb2480 (diff) | |
download | DotNetOpenAuth-a20f97a9f5cab3870ee04882ed83a7f7918ee969.zip DotNetOpenAuth-a20f97a9f5cab3870ee04882ed83a7f7918ee969.tar.gz DotNetOpenAuth-a20f97a9f5cab3870ee04882ed83a7f7918ee969.tar.bz2 |
Fixed build break introduced by last commit.
Diffstat (limited to 'samples')
-rw-r--r-- | samples/Consumer/TracePage.aspx.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/Consumer/TracePage.aspx.cs b/samples/Consumer/TracePage.aspx.cs index b642be3..7075ce3 100644 --- a/samples/Consumer/TracePage.aspx.cs +++ b/samples/Consumer/TracePage.aspx.cs @@ -9,7 +9,7 @@ using System.Web.UI.WebControls; /// </summary> public partial class TracePage : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { - this.placeHolder1.Controls.Add(new Label { Text = HttpUtility.HtmlEncode(Global.LogMessages.ToString()) }); + this.placeHolder1.Controls.Add(new Label { Text = HttpUtility.HtmlEncode(Logging.LogMessages.ToString()) }); } protected void clearLogButton_Click(object sender, EventArgs e) { |