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

fractile81’s picture

Status: Active » Fixed

This has been fixed internally and will be in the next release.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.