diff --git a/modules/meta.module b/modules/meta.module index c80c1e4622534da1c1d3bff6cc760c33adf81c88..f88186a932cdaaa9b10415e024b6e7a5a7d214d4 100644 --- a/modules/meta.module +++ b/modules/meta.module @@ -31,7 +31,7 @@ function meta_form($type, $edit = array()) { $t = db_query("SELECT * FROM tag WHERE collections LIKE '%$collection->name%' ORDER BY name"); while ($tag = db_fetch_object($t)) { - if (strstr($edit[attributes], $tag->attributes)) { + if (@strstr($edit[attributes], $tag->attributes)) { $edit[$collection->name] = $tag->attributes; } $array[$tag->attributes] = $tag->name;