Skip to content

Commit

Permalink
Merge branch 'release/v_1.3.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
sachatrauwaen committed Apr 23, 2015
2 parents 33d32fa + 5474ea5 commit 2d4ca53
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion HttpModules/UrlRewriteModuleUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ private static bool IsSpecialPage(Uri Url, string PhysicalPath, string RawUrl, s
}
//if (Url.LocalPath.ToLower().EndsWith(".aspx") && !Url.LocalPath.ToLower().EndsWith(Globals.glbDefaultPage.ToLower()))

if ((Directory.Exists(PhysicalPath) || File.Exists(PhysicalPath)) && !Url.LocalPath.ToLower().EndsWith(Globals.glbDefaultPage.ToLower()))
if (File.Exists(PhysicalPath) && !Url.LocalPath.ToLower().EndsWith(Globals.glbDefaultPage.ToLower()))
{
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion OpenUrlRewriter71.dnn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<dotnetnuke type="Package" version="5.0">
<packages>
<package name="OpenUrlRewriter" type="Module" version="01.03.01">
<package name="OpenUrlRewriter" type="Module" version="01.03.02">
<friendlyName>OpenUrlRewriter</friendlyName>
<description>Satrabel OpenUrlRewriter module</description>
<iconFile>/Icons/Sigma/AdvancedUrlMngmt_32x32.png</iconFile>
Expand Down

0 comments on commit 2d4ca53

Please sign in to comment.