Closed (fixed)
Project:
Integrated Metatags
Version:
6.x-1.0-beta5
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
6 Nov 2008 at 02:09 UTC
Updated:
21 Nov 2008 at 02:51 UTC
int_meta_show_tags() calls itself with the value of a variable which is not before declared, and to which is not given any values; the passed value is not even needed, as the function declares just one argument, in its formal parameters list.
function int_meta_show_tags($tag) {
static $types = array();
if (is_array($tag)) {
// Cycle through each tag individually
foreach ($tag as $curr) {
int_meta_show_tags($curr, $empty);
}
// ...
}
Comments
Comment #1
fractile81 commentedThis has been fixed internally and will be in the next release.