Skip to content

Commit

Permalink
fix notice
Browse files Browse the repository at this point in the history
  • Loading branch information
eteubert committed Mar 10, 2014
1 parent af96bcd commit 01c47f2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/modules/contributors/contributors.php
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,10 @@ function manage_podcast_columns($column_name) {
switch ($column_name) {
case 'contributors':
$episode = \Podlove\Model\Episode::find_one_by_post_id(get_the_ID());

if (!$episode)
return;

$contributors = \Podlove\Modules\Contributors\Model\EpisodeContribution::find_all_by_episode_id($episode->id);
$contributor_list = "";

Expand Down

0 comments on commit 01c47f2

Please sign in to comment.