Skip to content

Commit

Permalink
Fix for #11
Browse files Browse the repository at this point in the history
  • Loading branch information
mclarkson committed Mar 9, 2014
1 parent 07927d3 commit 410fee4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SOURCES/nagrestconf-1/plugins/smorg_backup_btn_impl.php
Expand Up @@ -551,7 +551,7 @@ function restore_table( $tblnam, $tempdir, &$errstring ) {
$new_qs["folder"] = FOLDER;
foreach( $moreitems as $item ) {
foreach( $item as $key => $val ) {
if( empty($val) ) continue;
if( strlen($val) == 0 ) continue;
$new_qs[$key] = $val;
}
}
Expand Down

0 comments on commit 410fee4

Please sign in to comment.