Skip to content

Commit

Permalink
Do not complain about empty authors
Browse files Browse the repository at this point in the history
  • Loading branch information
kohler committed Sep 12, 2024
1 parent 8c01ae7 commit 22bc8f8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/options/o_authors.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,9 @@ function value_check(PaperValue $ov, Contact $user) {
$n = 0;
foreach ($aulist as $auth) {
++$n;
if ($auth->is_empty()) {
continue;
}
if ($auth->firstName === ""
&& $auth->lastName === ""
&& $auth->email === ""
Expand Down

0 comments on commit 22bc8f8

Please sign in to comment.