Skip to content

Commit

Permalink
fix E_NOTICE
Browse files Browse the repository at this point in the history
  • Loading branch information
craigh committed Jun 16, 2011
1 parent c4312f4 commit 919f03c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function displayEditing() {
if ($enablecategorization && $this->categories) {
foreach ($this->categories['Main'] as $id) {
$thiscat = CategoryUtil::getCategoryByID($id);
$cats[] = $thiscat['display_name'][$lang];
$cats[] = isset($thiscat['display_name'][$lang]) ? $thiscat['display_name'][$lang] : $thiscat['name'];
}
$catlist = implode (', ', $cats);
$output .= $this->__('Display event list from catgories') . '<br />';
Expand Down

0 comments on commit 919f03c

Please sign in to comment.