Skip to content

Commit

Permalink
Minor bug-fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
sergejey committed Dec 27, 2018
1 parent 92ca2b9 commit 02bf04e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions modules/settings/settings_search.inc.php
Expand Up @@ -50,6 +50,7 @@
$tmp['TYPE']='text';
$tmp['DEFAULTVALUE']='';
$tmp['NOTES']='';
$tmp['DATA']='';
SQLInsert('settings', $tmp);
}
}
Expand All @@ -74,6 +75,7 @@
$tmp['TYPE']='text';
$tmp['DEFAULTVALUE']='';
$tmp['NOTES']='';
$tmp['DATA']='';
SQLInsert('settings', $tmp);
}
}
Expand All @@ -92,6 +94,7 @@
$tmp['TYPE']='onoff';
$tmp['DEFAULTVALUE']='0';
$tmp['NOTES']='';
$tmp['DATA']='';
SQLInsert('settings', $tmp);
}
}
Expand All @@ -113,6 +116,7 @@
$tmp['TITLE']=$v;
$tmp['TYPE']='path';
$tmp['NOTES']='';
$tmp['DATA']='';
SQLInsert('settings', $tmp);
}
}
Expand All @@ -131,6 +135,7 @@
$tmp['TYPE']='onoff';
$tmp['DEFAULTVALUE']='0';
$tmp['NOTES']='';
$tmp['DATA']='';
SQLInsert('settings', $tmp);
}
}
Expand All @@ -152,6 +157,7 @@
$tmp['TITLE']=$v;
$tmp['TYPE']='text';
$tmp['NOTES']='';
$tmp['DATA']='';
SQLInsert('settings', $tmp);
}
}
Expand Down

0 comments on commit 02bf04e

Please sign in to comment.