diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-07-04 13:05:02 +0200 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2012-07-04 13:05:02 +0200 |
commit | 179ffc893067bf0f2bf2cf0a55a843549020e28f (patch) | |
tree | ead8dba420edcdea99426cf15dc7b187dde99612 /user_guide_src | |
parent | ac57033236d5b62ba553b6bea87623f0dbeb2f49 (diff) | |
parent | 9d21400f12bfe3a09d27afb00a22ae96fbbed1d5 (diff) |
Merge pull request #1573 from vlakoff/doc
Fix typos in upgrade_300.rst
Diffstat (limited to 'user_guide_src')
-rw-r--r-- | user_guide_src/source/installation/upgrade_300.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide_src/source/installation/upgrade_300.rst b/user_guide_src/source/installation/upgrade_300.rst index 6b93750d1..f304a716f 100644 --- a/user_guide_src/source/installation/upgrade_300.rst +++ b/user_guide_src/source/installation/upgrade_300.rst @@ -108,13 +108,13 @@ Date helper standard_date() :doc:`Date Helper <../helpers/date_helper>` function ``standard_date()`` is being deprecated due to the availability of native PHP `constants <http://www.php.net/manual/en/class.datetime.php#datetime.constants.types>`_, which when combined with ``date()`` provide the same functionality. Furthermore, they have the -exact same names as the ones suppored by ``standard_date()``. Here are examples of how to replace +exact same names as the ones supported by ``standard_date()``. Here are examples of how to replace it's usage: :: // Old way - standard_date(); // defaults to stanard_date('DATE_RFC822', now()); + standard_date(); // defaults to standard_date('DATE_RFC822', now()); // Replacement date(DATE_RFC822, now()); |