Skip to content

Commit 0f1ca0c

Browse files
authored
Merge pull request #4686 from MGatner/spaces
Spacing issues
2 parents 9ef382d + ffc5023 commit 0f1ca0c

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

public/.htaccess

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,31 +19,31 @@ Options All -Indexes
1919
# Redirect Trailing Slashes...
2020
RewriteCond %{REQUEST_FILENAME} !-d
2121
RewriteCond %{REQUEST_URI} (.+)/$
22-
RewriteRule ^ %1 [L,R=301]
22+
RewriteRule ^ %1 [L,R=301]
2323

2424
# Rewrite "www.example.com -> example.com"
2525
RewriteCond %{HTTPS} !=on
2626
RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
2727
RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
2828

2929
# Checks to see if the user is attempting to access a valid file,
30-
# such as an image or css document, if this isn't true it sends the
31-
# request to the front controller, index.php
30+
# such as an image or css document, if this isn't true it sends the
31+
# request to the front controller, index.php
3232
RewriteCond %{REQUEST_FILENAME} !-f
3333
RewriteCond %{REQUEST_FILENAME} !-d
3434
RewriteRule ^([\s\S]*)$ index.php/$1 [L,NC,QSA]
3535

3636
# Ensure Authorization header is passed along
37-
RewriteCond %{HTTP:Authorization} .
38-
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
37+
RewriteCond %{HTTP:Authorization} .
38+
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
3939
</IfModule>
4040

4141
<IfModule !mod_rewrite.c>
42-
# If we don't have mod_rewrite installed, all 404's
43-
# can be sent to index.php, and everything works as normal.
44-
ErrorDocument 404 index.php
42+
# If we don't have mod_rewrite installed, all 404's
43+
# can be sent to index.php, and everything works as normal.
44+
ErrorDocument 404 index.php
4545
</IfModule>
4646

4747
# Disable server signature start
48-
ServerSignature Off
48+
ServerSignature Off
4949
# Disable server signature end

user_guide_src/source/libraries/uri.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Many times, all you really want is an object representing the current URL of thi
3535
You can use one of the functions available in the **url_helper**::
3636

3737
$uri = current_url(true);
38-
38+
3939
You must pass ``true`` as the first parameter, otherwise, it will return the string representation of the current URL.
4040
This URI is based on the path (relative to your ``baseURL``) as determined by the current request object and
4141
your settings in ``Config\App`` (baseURL, indexPage, and forceGlobalSecureRequests).

0 commit comments

Comments
 (0)