Skip to content

Commit ddc332b

Browse files
committed
Corrected bug #12 (Making a change to the settings forced re-check of disable validation box)
1 parent fabdc8b commit ddc332b

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

DNN_IFrame.dnn

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<dotnetnuke type="Package" version="5.0">
22
<packages>
3-
<package name="DNN_IFrame" type="Module" version="08.01.00">
3+
<package name="DNN_IFrame" type="Module" version="08.01.01">
44
<friendlyName>IFrame</friendlyName>
55
<description>
66
<![CDATA[
@@ -181,7 +181,7 @@
181181
<script type="UnInstall">
182182
<path>Providers\DataProviders\SqlDataProvider</path>
183183
<name>Uninstall.SqlDataProvider</name>
184-
<version>08.01.00</version>
184+
<version>08.01.01</version>
185185
</script>
186186
</scripts>
187187
</component>
@@ -231,7 +231,7 @@
231231
<attributes>
232232
<businessControllerClass>DotNetNuke.Modules.IFrame.Components.ParametersController</businessControllerClass>
233233
<desktopModuleID>[DESKTOPMODULEID]</desktopModuleID>
234-
<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>
234+
<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>
235235
</attributes>
236236
</eventMessage>
237237
</component>
@@ -241,7 +241,7 @@
241241
<assembly>
242242
<path>bin</path>
243243
<name>DotNetNuke.Modules.IFrame.dll</name>
244-
<version>8.1.0.0</version>
244+
<version>8.1.1.0</version>
245245
</assembly>
246246
</assemblies>
247247
</component>

Documentation/ReleaseNotes.html

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,8 @@ <h3>DNN IFrame Project 08.01.00</h3>
3434
<li>Another Regex correction in IFrameOptions - thanks to nvisionative</li>
3535
<li>Added a setting to disable the Url validation if the regex does not match</li>
3636
</ul>
37+
<h3>DNN IFrame Project 08.01.01</h3>
38+
<ul>
39+
<li>Corrected bug #12 (Making a change to the settings forced re-check of disable validation box)</li>
40+
</ul>
3741
</div>

IframeOptions.ascx.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ protected void Page_Load(object sender, EventArgs e)
234234
SourceUrl.Url = Source;
235235
SourceUrl.UrlType = UrlType;
236236
IgnoreSourceUrlValidationCheckBox.Checked = IgnoreSourceUrlValidation;
237+
SourceUrlRegExpValidator.Enabled = (!(IgnoreSourceUrlValidation));
237238
WidthTextBox.Text = Width;
238239
HeightTextBox.Text = Height;
239240
AutoHeightCheckBox.Checked = AutoHeight;

Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
//
3232
// You can specify all the values or you can default the Revision and Build Numbers
3333
// by using the '*' as shown below:
34-
[assembly: AssemblyVersion("8.1.0.0")]
35-
[assembly: AssemblyFileVersion("8.1.0.0")]
34+
[assembly: AssemblyVersion("8.1.1.0")]
35+
[assembly: AssemblyFileVersion("8.1.1.0")]

0 commit comments

Comments
 (0)