Skip to content

Commit b8ca07c

Browse files
authored
Merge pull request #4095 from npwsamarasinghe/develop
Fix URL type.
2 parents fad7376 + f5e372b commit b8ca07c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

user_guide_src/source/helpers/form_helper.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ The following functions are available:
5858
:returns: An HTML form opening tag
5959
:rtype: string
6060

61-
Creates an opening form tag with a base URL **built from your config preferences**.
61+
Creates an opening form tag with a site URL **built from your config preferences**.
6262
It will optionally let you add form attributes and hidden input fields, and
6363
will always add the `accept-charset` attribute based on the charset value in your
6464
config file.
@@ -70,7 +70,7 @@ The following functions are available:
7070

7171
echo form_open('email/send');
7272

73-
The above example would create a form that points to your base URL plus the
73+
The above example would create a form that points to your site URL plus the
7474
"email/send" URI segments, like this::
7575

7676
<form action="http://example.com/index.php/email/send" method="post" accept-charset="utf-8">
@@ -79,7 +79,7 @@ The following functions are available:
7979

8080
echo form_open('{locale}/email/send');
8181

82-
The above example would create a form that points to your base URL plus the current request locale with
82+
The above example would create a form that points to your site URL plus the current request locale with
8383
"email/send" URI segments, like this::
8484

8585
<form action="http://example.com/index.php/en/email/send" method="post" accept-charset="utf-8">

0 commit comments

Comments
 (0)