Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
b5e55155
Commit
b5e55155
authored
Dec 21, 2001
by
natrak
Browse files
- removed errors on empty meta tags:
http://www.drupal.org/node.php?id=21
parent
f7de56cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/meta.module
View file @
b5e55155
...
...
@@ -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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment