diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-05-25 01:16:51 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-05-25 01:16:51 +0200 |
commit | 2d40703ff7454dcbd10701bd5e0b3082ccc96be1 (patch) | |
tree | c79cb121ad6d3746d262f2dd464ded0c9a1a22b4 /user_guide/libraries | |
parent | a459b46e7a5f67a96d0ea85e0778f1bf8858dbdd (diff) |
fixed a missing semi colon in pagination example
Diffstat (limited to 'user_guide/libraries')
-rw-r--r-- | user_guide/libraries/pagination.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user_guide/libraries/pagination.html b/user_guide/libraries/pagination.html index d91a73eea..5592bc22a 100644 --- a/user_guide/libraries/pagination.html +++ b/user_guide/libraries/pagination.html @@ -160,7 +160,7 @@ something different you can specify it.</p> <h2>Customizing the "Next" Link</h2>
-<h4>$config['next_link'] = '&gt';</h4>
+<h4>$config['next_link'] = '&gt;';</h4>
<p>The text you would like shown in the "next" page link.</p>
<h4>$config['next_tag_open'] = '<div>';</h4>
@@ -171,7 +171,7 @@ something different you can specify it.</p> <h2>Customizing the "Previous" Link</h2>
-<h4>$config['prev_link'] = '&lt';</h4>
+<h4>$config['prev_link'] = '&lt;';</h4>
<p>The text you would like shown in the "previous" page link.</p>
<h4>$config['prev_tag_open'] = '<div>';</h4>
|