Skip to content

Commit

Permalink
Making sure level description and confirmation are strings to avoid P…
Browse files Browse the repository at this point in the history
…HP warning
  • Loading branch information
dparker1005 committed Mar 27, 2024
1 parent 09cf022 commit 7e7bd8b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions adminpages/levels/edit-level.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@
$level = new stdClass();
$level->id = NULL;
$level->name = NULL;
$level->description = NULL;
$level->confirmation = NULL;
$level->description = '';
$level->confirmation = '';
$level->initial_payment = NULL;
$level->billing_amount = NULL;
$level->cycle_number = 1;
Expand Down

0 comments on commit 7e7bd8b

Please sign in to comment.