summaryrefslogtreecommitdiffstats
path: root/user_guide/database
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2010-07-05 13:43:46 +0200
committerDerek Allard <derek.allard@ellislab.com>2010-07-05 13:43:46 +0200
commitf597dd19ef20e4bff70ad10bf794aab3915d693d (patch)
tree019f2c7203d7e697c911aa3b0d4792665014007b /user_guide/database
parent2f304d6119e022abd5bd29e6a9980b7c81a27586 (diff)
fixed a missing </li> in guide
Diffstat (limited to 'user_guide/database')
-rw-r--r--user_guide/database/queries.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/user_guide/database/queries.html b/user_guide/database/queries.html
index dbb3e5c7d..7a6734c4a 100644
--- a/user_guide/database/queries.html
+++ b/user_guide/database/queries.html
@@ -113,7 +113,7 @@ Most of the time you'll use the above function rather than this one. Use the fun
conditions so that LIKE wildcards ('%', '_') in the string are also properly escaped.
<code>$search = '20% raise';<br />
-$sql = "SELECT id FROM table WHERE column LIKE '%".$this->db->escape_like_str($search)."%'";</code>
+$sql = "SELECT id FROM table WHERE column LIKE '%".$this->db->escape_like_str($search)."%'";</code></li>
</ol>