[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Omaha.pm] Another || quickie



BEFORE

  my $type = "error";
  $type = $args{type} if ($args{type});

AFTER

  my $type = $args{type} || "error";

j