- Changed '?meta=' to 'index.php?meta='. Patch by Simone.

3-00
Dries Buytaert 2001-06-19 19:13:17 +00:00
parent 8d31134d62
commit d67486f79b
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ function node_attributes_save($type, $edit) {
function node_attributes_view($string) {
foreach (explode(",", $string) as $attribute) {
if ($attribute = trim($attribute)) {
$array[] = "<a href=\"?meta=". urlencode($attribute) ."\">$attribute</a>";
$array[] = "<a href=\"index.php?meta=". urlencode($attribute) ."\">$attribute</a>";
}
}
return $array ? $array : array();