Skip to content

Commit

Permalink
Corrected bug #12 (Making a change to the settings forced re-check of…
Browse files Browse the repository at this point in the history
… disable validation box)
  • Loading branch information
MaiklT committed Jun 14, 2018
1 parent fabdc8b commit ddc332b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
8 changes: 4 additions & 4 deletions DNN_IFrame.dnn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<dotnetnuke type="Package" version="5.0">
<packages>
<package name="DNN_IFrame" type="Module" version="08.01.00">
<package name="DNN_IFrame" type="Module" version="08.01.01">
<friendlyName>IFrame</friendlyName>
<description>
<![CDATA[
Expand Down Expand Up @@ -181,7 +181,7 @@
<script type="UnInstall">
<path>Providers\DataProviders\SqlDataProvider</path>
<name>Uninstall.SqlDataProvider</name>
<version>08.01.00</version>
<version>08.01.01</version>
</script>
</scripts>
</component>
Expand Down Expand Up @@ -231,7 +231,7 @@
<attributes>
<businessControllerClass>DotNetNuke.Modules.IFrame.Components.ParametersController</businessControllerClass>
<desktopModuleID>[DESKTOPMODULEID]</desktopModuleID>
<upgradeVersionsList>03.02.00,03.02.03,04.03.00,04.04.00,08.00.00,08.00.01,08.00.02,08.01.00</upgradeVersionsList>
<upgradeVersionsList>03.02.00,03.02.03,04.03.00,04.04.00,08.00.00,08.00.01,08.00.02,08.01.00,08.01.01</upgradeVersionsList>
</attributes>
</eventMessage>
</component>
Expand All @@ -241,7 +241,7 @@
<assembly>
<path>bin</path>
<name>DotNetNuke.Modules.IFrame.dll</name>
<version>8.1.0.0</version>
<version>8.1.1.0</version>
</assembly>
</assemblies>
</component>
Expand Down
4 changes: 4 additions & 0 deletions Documentation/ReleaseNotes.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,8 @@ <h3>DNN IFrame Project 08.01.00</h3>
<li>Another Regex correction in IFrameOptions - thanks to nvisionative</li>
<li>Added a setting to disable the Url validation if the regex does not match</li>
</ul>
<h3>DNN IFrame Project 08.01.01</h3>
<ul>
<li>Corrected bug #12 (Making a change to the settings forced re-check of disable validation box)</li>
</ul>
</div>
1 change: 1 addition & 0 deletions IframeOptions.ascx.cs
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ protected void Page_Load(object sender, EventArgs e)
SourceUrl.Url = Source;
SourceUrl.UrlType = UrlType;
IgnoreSourceUrlValidationCheckBox.Checked = IgnoreSourceUrlValidation;
SourceUrlRegExpValidator.Enabled = (!(IgnoreSourceUrlValidation));
WidthTextBox.Text = Width;
HeightTextBox.Text = Height;
AutoHeightCheckBox.Checked = AutoHeight;
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("8.1.0.0")]
[assembly: AssemblyFileVersion("8.1.0.0")]
[assembly: AssemblyVersion("8.1.1.0")]
[assembly: AssemblyFileVersion("8.1.1.0")]

0 comments on commit ddc332b

Please sign in to comment.