Skip to content

Commit

Permalink
Fixes #27
Browse files Browse the repository at this point in the history
...where an incorrectly spelled method name cause the backup tool to
break.
  • Loading branch information
Mark Vincent committed Oct 14, 2017
1 parent 4f1293c commit 32858e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Upload/inc/plugins/yourcode/functions_acp.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function yourcode_backup()
$rows = '';

foreach ($all_codes as $code) {
$this_row = $code->build_row();
$this_row = $code->buildRow();
$id = $code->get('id');
$rows .= <<<EOF
<yourcode_{$id}>
Expand Down

0 comments on commit 32858e8

Please sign in to comment.