Skip to content
Snippets Groups Projects
Commit 16a88071 authored by Andreas Kusalananda Kähäri's avatar Andreas Kusalananda Kähäri
Browse files

Forgot to change a variable name in a couple of places...

parent fce41181
No related branches found
No related tags found
No related merge requests found
......@@ -84,14 +84,14 @@ foreach my $source_section ( sort( $config->GroupMembers('source') ) ) {
. "priority, priority_description)\n" );
printf( "VALUES ('%s', '1', '%s', %d, %d, '%s');\n",
$config->val( $section, 'name' ),
$config->val( $section, 'download' ),
$config->val( $section, 'order' ),
$config->val( $section, 'priority' ),
$config->val( $section, 'prio_descr' ) );
$config->val( $source_section, 'name' ),
$config->val( $source_section, 'download' ),
$config->val( $source_section, 'order' ),
$config->val( $source_section, 'priority' ),
$config->val( $source_section, 'prio_descr' ) );
print("\n");
}
} ## end foreach my $source_section ...
# Do the data files.
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment