Skip to content
Snippets Groups Projects
Commit c4a3894e authored by Randy Sommerfeld's avatar Randy Sommerfeld
Browse files

Fix above commit

parent 7b4a5b26
No related branches found
No related tags found
1 merge request!455Update branch with changes from master
......@@ -868,6 +868,6 @@ function ZLine(ipmask,reason) {
function RBL_Config_Object(hostname, good, bad) {
this.hostname = hostname;
this.good = this.good ? good.split(",") : "";
this.bad = this.bad ? bad.split(",") : "";
this.good = good ? good.split(",") : "";
this.bad = bad ? bad.split(",") : "";
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment