diff options
author | friendica <info@friendica.com> | 2012-06-20 16:07:41 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-20 16:07:41 -0700 |
commit | 03c05d8a2875e84b3de3b5a1aed0ee608aac302f (patch) | |
tree | 0174cd6dc72d292b4ad3eeaab63d096d1a796bcd /mod | |
parent | 0f0e5be549e4bea3086f59614ad5eb3458f2e53f (diff) | |
download | volse-hubzilla-03c05d8a2875e84b3de3b5a1aed0ee608aac302f.tar.gz volse-hubzilla-03c05d8a2875e84b3de3b5a1aed0ee608aac302f.tar.bz2 volse-hubzilla-03c05d8a2875e84b3de3b5a1aed0ee608aac302f.zip |
missing paren
Diffstat (limited to 'mod')
-rw-r--r-- | mod/contacts.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/contacts.php b/mod/contacts.php index 1463af903..423fd40a2 100644 --- a/mod/contacts.php +++ b/mod/contacts.php @@ -482,7 +482,7 @@ function contacts_content(&$a) { $searching = false; if($search) { $search_hdr = $search; - $search = dbesc(protect_sprintf('%' . $search . '%'); + $search = dbesc(protect_sprintf('%' . $search . '%')); $searching = true; } $sql_extra .= (($searching) ? " AND `name` REGEXP '$search' " : ""); |