Skip to content

Commit

Permalink
Maintenance and bugs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
danpros committed Jan 24, 2016
1 parent e66f84d commit ef62b9e
Show file tree
Hide file tree
Showing 24 changed files with 746 additions and 538 deletions.
13 changes: 13 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ DirectoryIndex index.php
# ExpiresByType text/html "access plus 1 month"

# For JavaScript
# ExpiresByType text/js "access plus 1 month"
# ExpiresByType text/javascript "access plus 1 month"
# ExpiresByType application/javascript "access plus 1 month"
# ExpiresByType application/x-javascript "access plus 1 month"

# For Manifest files
# ExpiresByType application/x-web-app-manifest+json "access plus 0 seconds"
Expand Down Expand Up @@ -65,6 +68,13 @@ DirectoryIndex index.php
<IfModule mod_rewrite.c>

RewriteEngine on

# Uncomment the following to redirect all visitors to the https version
# RewriteCond %{HTTPS} off
# RewriteRUle (.*) https://www.example.com/$1 [R=301,L]
# RewriteCond %{HTTPS} on
# RewriteCond %{HTTP_HOST} ^example\.com$ [NC]
# RewriteRUle (.*) https://www.example.com/$1 [R=301,L]

# Uncomment the following to redirect all visitors to the www version
# RewriteCond %{HTTP_HOST} !^www\. [NC]
Expand Down Expand Up @@ -102,7 +112,10 @@ DirectoryIndex index.php
# and can remove the `<IfModule mod_filter.c>` and `</IfModule>` lines
# as `AddOutputFilterByType` is still in the core directives).
AddOutputFilterByType DEFLATE application/atom+xml \
text/js \
text/javascript \
application/javascript \
application/x-javascript \
application/json \
application/rss+xml \
application/vnd.ms-fontobject \
Expand Down
2 changes: 1 addition & 1 deletion cache/installedVersion.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"id": 782014,
"tag_name": "v2.7.3"
"tag_name": "v2.7.4"
}
35 changes: 19 additions & 16 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config/config.ini.example
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ popular.count = "5"
author.info = "true"

; Teaser type: set "trimmed" or "full".
teaser.type = "trimmed"
teaser.type = "full"

; Read more link text for "full" teaser type
read.more = "Read more"
Expand Down
Loading

0 comments on commit ef62b9e

Please sign in to comment.