forked from rho_n/hpr_generator
		
	Skip padding when id is empty string
This commit is contained in:
		| @@ -303,7 +303,7 @@ sub get_filename { | |||||||
| 		else { | 		else { | ||||||
| 			$filename = $$config{'filename'}; | 			$filename = $$config{'filename'}; | ||||||
| 			my $padded_index = ""; | 			my $padded_index = ""; | ||||||
| 			if (exists $$config{'id'}) { | 			if (exists $$config{'id'} && $$config{'id'} ne "") { | ||||||
| 				$padded_index = sprintf("%04d", $$config{'id'}); | 				$padded_index = sprintf("%04d", $$config{'id'}); | ||||||
| 			} | 			} | ||||||
| 			$filename =~ s/\[id\]/$padded_index/; | 			$filename =~ s/\[id\]/$padded_index/; | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user