Skip to content

Commit

Permalink
Update changes to pull request #3
Browse files Browse the repository at this point in the history
  • Loading branch information
Joe Brinkman committed Sep 24, 2013
1 parent c7a47a8 commit d32b9fb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
<value>Select if the SQL statement does not return a value and only acts on the database to make changes</value>
</data>
<data name="errorLabel.Help" xml:space="preserve">
<value>This is the error returned by SQL server after trying to run your SQL script.</value>
<value>This is the error returned by SQL server after executing your SQL script.</value>
</data>
<data name="errorLabel.Text" xml:space="preserve">
<value>Error Details:</value>
Expand Down
5 changes: 2 additions & 3 deletions Website/DesktopModules/Admin/SQL/SQL.ascx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,8 @@ protected void OnExecuteClick(object sender, EventArgs e)
}
else
{
UI.Skins.Skin.AddModuleMessage(this, Localization.GetString("QueryError", LocalResourceFile), ModuleMessage.ModuleMessageType.RedError);
errorRow.Visible = true;
UI.Skins.Skin.AddModuleMessage(this, Localization.GetString("QueryError", LocalResourceFile), ModuleMessage.ModuleMessageType.RedError);
errorRow.Visible = true;
txtError.Text = strError;
}
}
Expand All @@ -193,7 +193,6 @@ protected void OnExecuteClick(object sender, EventArgs e)
}
else
{

UI.Skins.Skin.AddModuleMessage(this, Localization.GetString("QueryError", LocalResourceFile), ModuleMessage.ModuleMessageType.RedError);
}
}
Expand Down

0 comments on commit d32b9fb

Please sign in to comment.