Skip to content

Commit

Permalink
fix method name plural form
Browse files Browse the repository at this point in the history
  • Loading branch information
MikhailTymchukDX committed Jun 1, 2016
1 parent c8d9295 commit f5e6a67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AjaxControlToolkit/AjaxFileUpload/AjaxFileUpload.cs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public bool ServerPollingSupport {

protected override void OnInit(EventArgs e) {
base.OnInit(e);
if(IsDesignMode || !IsFileUploadParamsPresent())
if(IsDesignMode || !AreFileUploadParamsPresent())
return;

IsInFileUploadPostBack = true;
Expand All @@ -247,7 +247,7 @@ protected override void OnInit(EventArgs e) {
processor.ProcessRequest();
}

bool IsFileUploadParamsPresent() {
bool AreFileUploadParamsPresent() {
return !string.IsNullOrEmpty(Page.Request.QueryString["contextkey"])
&&
Page.Request.QueryString["contextkey"] == ContextKey
Expand Down

0 comments on commit f5e6a67

Please sign in to comment.