File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
user_guide_src/source/helpers Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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">
You can’t perform that action at this time.
0 commit comments