-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2486 from codeigniter4/parserpluginfix
Update current_url and previous_url in the docs for View Parser. Fixes #2460
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -521,8 +521,8 @@ The following plugins are available when using the parser: | |
==================== ========================== ================================================================================== ================================================================ | ||
Plugin Arguments Description Example | ||
==================== ========================== ================================================================================== ================================================================ | ||
currentURL Alias for the current_url helper function. {+ currentURL +} | ||
previousURL Alias for the previous_url helper function. {+ previousURL +} | ||
current_url Alias for the current_url helper function. {+ current_url +} | ||
previous_url Alias for the previous_url helper function. {+ previous_url +} | ||
siteURL Alias for the site_url helper function. {+ siteURL "login" +} | ||
mailto email, title, attributes Alias for the mailto helper function. {+ mailto [email protected] title="Stranger Things" +} | ||
safe_mailto email, title, attributes Alias for the safe_mailto helper function. {+ safe_mailto [email protected] title="Stranger Things" +} | ||
|