update for change in class.categories.inc.php, id --> cat_id

This commit is contained in:
Ralf Becker 2002-10-12 20:40:18 +00:00
parent edc9286de9
commit 31825455e7

View File

@ -417,7 +417,14 @@
{ {
$s .= ' <' . lang('Global') . ' ' . lang($this->app_name) . '>'; $s .= ' <' . lang('Global') . ' ' . lang($this->app_name) . '>';
} }
$cell['sel_options'][$cat['id']] = $s; if ($tmpl->stable)
{
$cell['sel_options'][$cat['id']] = $s; // 0.9.14 only
}
else
{
$cell['sel_options'][$cat['cat_id']] = $s;
}
} }
$cell['no_lang'] = True; $cell['no_lang'] = True;
break; break;
@ -505,4 +512,4 @@
} }
return $info; return $info;
} }
} }