diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-06-15 09:23:58 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-06-15 09:23:58 +0000 |
commit | bfa80297d8bf523fd1f117809546caf6a7bc8202 (patch) | |
tree | 529d61c46141c57dc4ffcb8dc5bae1aa85a402fc | |
parent | 96576a6ef748f960b1f8318aa5d425627627d851 (diff) | |
download | brdo-bfa80297d8bf523fd1f117809546caf6a7bc8202.tar.gz brdo-bfa80297d8bf523fd1f117809546caf6a7bc8202.tar.bz2 |
- Made index.php work with new meta.module.
-rw-r--r-- | index.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -5,7 +5,7 @@ include_once "includes/common.inc"; page_header(); foreach(explode("&", $QUERY_STRING) as $attribute) { - if ($attribute) $query .= "attribute LIKE '%". check_input(strtr($attribute, "=", ":")) ."%' AND "; + if ($attribute) $query .= "attributes LIKE '%". check_input($attribute) ."%' AND "; } $query = !$date ? $query : ""; |