Skip to content

Commit

Permalink
[joomla#27604] class suffix missing from mod_banner ITEMS
Browse files Browse the repository at this point in the history
  • Loading branch information
n3t authored and dextercowley committed Jan 10, 2012
1 parent 057b13c commit d7cf512
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions installation/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ $ -> Language fix or change
10-Jan-2012 Mark Dexter
# [#27634] PHP Strict error for SQLServer (merge with 11.4 platform)
# [#27678] PHP 5.4 (E_STRICT): installation fails due to strict warnings
# [#27604] class suffix missing from mod_banner ITEMS

09-Jan-2012 Jean-Marie Simonet
# [#27671] Hathor Global configuration not working. Thanks Andrea.
Expand Down
13 changes: 6 additions & 7 deletions web.config.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<system.webServer>
<rewrite>
<rules>
<rule name="Imported Rule 1" stopProcessing="true">
<rule name="Joomla! Rule 1" stopProcessing="true">
<match url="^(.*)$" ignoreCase="false" />
<conditions logicalGrouping="MatchAny">
<add input="{QUERY_STRING}" pattern="base64_encode[^(]*\([^)]*\)" ignoreCase="false" />
Expand All @@ -13,14 +13,13 @@
</conditions>
<action type="CustomResponse" url="index.php" statusCode="403" statusReason="Forbidden" statusDescription="Forbidden" />
</rule>
<rule name="Imported Rule 2">
<rule name="Joomla! Rule 2">
<match url="(.*)" ignoreCase="false" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
<add input="{URL}" pattern="^/index.php" ignoreCase="true" negate="true" />
<add input="{URL}" pattern="(/component/)" ignoreCase="false" negate="true" />
<add input="{URL}" pattern="(/[^.]*|\.(php|html?|feed|pdf|raw))$" />
<add input="{URL}" pattern="^/index.php" ignoreCase="true" negate="true" />
<add input="{URL}" pattern="/component/|(/[^.]*|\.(php|html?|feed|pdf|vcf|raw))$" />
<add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
</conditions>
<action type="Rewrite" url="index.php" />
</rule>
Expand Down

0 comments on commit d7cf512

Please sign in to comment.